forked from CGM_Public/pretix_original
Compare commits
64
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
52d537dec9 | ||
|
|
1879e440a7 | ||
|
|
f819f0c316 | ||
|
|
a1db13b75e | ||
|
|
6087665775 | ||
|
|
a6f93b6cf0 | ||
|
|
b96374fcf6 | ||
|
|
eb2ad48089 | ||
|
|
64dac504ca | ||
|
|
cf15a08712 | ||
|
|
9197274528 | ||
|
|
d19176ab41 | ||
|
|
8d8abbd941 | ||
|
|
5142c62e6e | ||
|
|
7f7223fcdc | ||
|
|
cdde688964 | ||
|
|
233bcaf00e | ||
|
|
0a5f3e6dd5 | ||
|
|
446d24553e | ||
|
|
45c32bcb05 | ||
|
|
5a5090604a | ||
|
|
2b370bde6d | ||
|
|
024a223ec7 | ||
|
|
022f44ad00 | ||
|
|
a682eab18e | ||
|
|
6721762a3f | ||
|
|
ad443d0eb6 | ||
|
|
ececd3e572 | ||
|
|
ffc4a76b11 | ||
|
|
4beb0c2e30 | ||
|
|
48e161d2d4 | ||
|
|
dc1973f4ff | ||
|
|
a0b046d204 | ||
|
|
0032f83d93 | ||
|
|
f312200881 | ||
|
|
9946da57c2 | ||
|
|
11e04ea3f2 | ||
|
|
9cef63d641 | ||
|
|
cb833cc6da | ||
|
|
5320a69c27 | ||
|
|
510ca67107 | ||
|
|
13720e731e | ||
|
|
78cfbd6460 | ||
|
|
a65f94fa85 | ||
|
|
288f73b735 | ||
|
|
ad33785f4c | ||
|
|
bbc175d3d6 | ||
|
|
2876ff5549 | ||
|
|
ed9caa04fc | ||
|
|
83a8fcaa47 | ||
|
|
858a448db5 | ||
|
|
58b803539b | ||
|
|
6c92c5bacf | ||
|
|
f0089f20fb | ||
|
|
cb2d056afd | ||
|
|
afb115c9a2 | ||
|
|
bb92ffe4eb | ||
|
|
8da8e2f43d | ||
|
|
cab360bdb6 | ||
|
|
c6a2ae3783 | ||
|
|
26ec9dcf6c | ||
|
|
c0832098ef | ||
|
|
fa3ac69b8e | ||
|
|
17f1d571b0 |
@@ -0,0 +1 @@
|
||||
17
|
||||
@@ -10,6 +10,8 @@ recursive-include src/pretix/helpers/locale *
|
||||
recursive-include src/pretix/base/templates *
|
||||
recursive-include src/pretix/control/templates *
|
||||
recursive-include src/pretix/presale/templates *
|
||||
recursive-include src/pretix/plugins/autocheckin/templates *
|
||||
recursive-include src/pretix/plugins/autocheckin/static *
|
||||
recursive-include src/pretix/plugins/banktransfer/templates *
|
||||
recursive-include src/pretix/plugins/banktransfer/static *
|
||||
recursive-include src/pretix/plugins/manualpayment/templates *
|
||||
|
||||
@@ -0,0 +1,259 @@
|
||||
.. _rest-autocheckinrules:
|
||||
|
||||
Auto check-in rules
|
||||
===================
|
||||
|
||||
This feature requires the bundled ``pretix.plugins.autocheckin`` plugin to be active for the event in order to work properly.
|
||||
|
||||
Resource description
|
||||
--------------------
|
||||
|
||||
Auto check-in rules specify that tickets should under specific conditions automatically be considered checked in after
|
||||
they have been purchased.
|
||||
|
||||
.. rst-class:: rest-resource-table
|
||||
|
||||
===================================== ========================== =======================================================
|
||||
Field Type Description
|
||||
===================================== ========================== =======================================================
|
||||
id integer Internal ID of the rule
|
||||
list integer ID of the check-in list to check the ticket in on. If
|
||||
``None``, the system will select all matching check-in lists.
|
||||
mode string ``"placed"`` if the rule should be evaluated right after
|
||||
an order has been created, ``"paid"`` if the rule should
|
||||
be evaluated after the order has been fully paid.
|
||||
all_sales_channels boolean If ``true`` (default), the rule applies to tickets sold on all sales channels.
|
||||
limit_sales_channels list of strings List of sales channel identifiers the rule should apply to
|
||||
if ``all_sales_channels`` is ``false``.
|
||||
all_products boolean If ``true`` (default), the rule affects all products and variations.
|
||||
limit_products list of integers List of item IDs, if ``all_products`` is not set. If the
|
||||
product listed here has variations, all variations will be matched.
|
||||
limit_variations list of integers List of product variation IDs, if ``all_products`` is not set.
|
||||
The parent product does not need to be part of ``limit_products``.
|
||||
all_payment_methods boolean If ``true`` (default), the rule applies to tickets paid with all payment methods.
|
||||
limit_payment_methods list of strings List of payment method identifiers the rule should apply to
|
||||
if ``all_payment_methods`` is ``false``.
|
||||
===================================== ========================== =======================================================
|
||||
|
||||
.. versionadded:: 2024.7
|
||||
|
||||
Endpoints
|
||||
---------
|
||||
|
||||
.. http:get:: /api/v1/organizers/(organizer)/events/(event)/auto_checkin_rules/
|
||||
|
||||
Returns a list of all rules configured for an event.
|
||||
|
||||
**Example request**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
GET /api/v1/organizers/bigevents/events/sampleconf/auto_checkin_rules/ 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,
|
||||
"list": 12345,
|
||||
"mode": "placed",
|
||||
"all_sales_channels": false,
|
||||
"limit_sales_channels": ["web"],
|
||||
"all_products": False,
|
||||
"limit_products": [2, 3],
|
||||
"limit_variations": [456],
|
||||
"all_payment_methods": true,
|
||||
"limit_payment_methods": []
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
:query page: The page number in case of a multi-page result set, default is 1
|
||||
:param organizer: The ``slug`` field of a valid organizer
|
||||
:param event: The ``slug`` field of the event to fetch
|
||||
:statuscode 200: no error
|
||||
:statuscode 401: Authentication failure
|
||||
:statuscode 403: The requested organizer does not exist **or** you have no permission to view it.
|
||||
|
||||
.. http:get:: /api/v1/organizers/(organizer)/events/(event)/auto_checkin_rules/(id)/
|
||||
|
||||
Returns information on one rule, identified by its ID.
|
||||
|
||||
**Example request**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
GET /api/v1/organizers/bigevents/events/sampleconf/auto_checkin_rules/1/ 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
|
||||
|
||||
{
|
||||
"id": 1,
|
||||
"list": 12345,
|
||||
"mode": "placed",
|
||||
"all_sales_channels": false,
|
||||
"limit_sales_channels": ["web"],
|
||||
"all_products": False,
|
||||
"limit_products": [2, 3],
|
||||
"limit_variations": [456],
|
||||
"all_payment_methods": true,
|
||||
"limit_payment_methods": []
|
||||
}
|
||||
|
||||
:param organizer: The ``slug`` field of the organizer to fetch
|
||||
:param event: The ``slug`` field of the event to fetch
|
||||
:param id: The ``id`` field of the rule to fetch
|
||||
:statuscode 200: no error
|
||||
:statuscode 401: Authentication failure
|
||||
:statuscode 403: The requested organizer/event/rule does not exist **or** you have no permission to view it.
|
||||
|
||||
.. http:post:: /api/v1/organizers/(organizer)/events/(event)/auto_checkin_rules/
|
||||
|
||||
Create a new rule.
|
||||
|
||||
**Example request**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
POST /api/v1/organizers/bigevents/events/sampleconf/auto_checkin_rules/ HTTP/1.1
|
||||
Host: pretix.eu
|
||||
Accept: application/json, text/javascript
|
||||
Content-Type: application/json
|
||||
Content-Length: 166
|
||||
|
||||
{
|
||||
"list": 12345,
|
||||
"mode": "placed",
|
||||
"all_sales_channels": false,
|
||||
"limit_sales_channels": ["web"],
|
||||
"all_products": False,
|
||||
"limit_products": [2, 3],
|
||||
"limit_variations": [456],
|
||||
"all_payment_methods": true,
|
||||
"limit_payment_methods": []
|
||||
}
|
||||
|
||||
**Example response**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
HTTP/1.1 201 Created
|
||||
Vary: Accept
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"id": 1,
|
||||
"list": 12345,
|
||||
"mode": "placed",
|
||||
"all_sales_channels": false,
|
||||
"limit_sales_channels": ["web"],
|
||||
"all_products": False,
|
||||
"limit_products": [2, 3],
|
||||
"limit_variations": [456],
|
||||
"all_payment_methods": true,
|
||||
"limit_payment_methods": []
|
||||
}
|
||||
|
||||
:param organizer: The ``slug`` field of the organizer to create a rule for
|
||||
:param event: The ``slug`` field of the event to create a rule for
|
||||
:statuscode 201: no error
|
||||
:statuscode 400: The rule could not be created due to invalid submitted data.
|
||||
:statuscode 401: Authentication failure
|
||||
:statuscode 403: The requested organizer/event does not exist **or** you have no permission to create rules.
|
||||
|
||||
|
||||
.. http:patch:: /api/v1/organizers/(organizer)/events/(event)/auto_checkin_rules/(id)/
|
||||
|
||||
Update a rule. You can also use ``PUT`` instead of ``PATCH``. With ``PUT``, you have to provide all fields of
|
||||
the resource, other fields will be reset to default. With ``PATCH``, you only need to provide the fields that you
|
||||
want to change.
|
||||
|
||||
**Example request**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
PATCH /api/v1/organizers/bigevents/events/sampleconf/auto_checkin_rules/1/ HTTP/1.1
|
||||
Host: pretix.eu
|
||||
Accept: application/json, text/javascript
|
||||
Content-Type: application/json
|
||||
Content-Length: 34
|
||||
|
||||
{
|
||||
"mode": "paid",
|
||||
}
|
||||
|
||||
**Example response**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
HTTP/1.1 200 OK
|
||||
Vary: Accept
|
||||
Content-Type: text/javascript
|
||||
|
||||
{
|
||||
"id": 1,
|
||||
"list": 12345,
|
||||
"mode": "placed",
|
||||
"all_sales_channels": false,
|
||||
"limit_sales_channels": ["web"],
|
||||
"all_products": False,
|
||||
"limit_products": [2, 3],
|
||||
"limit_variations": [456],
|
||||
"all_payment_methods": true,
|
||||
"limit_payment_methods": []
|
||||
}
|
||||
|
||||
:param organizer: The ``slug`` field of the organizer to modify
|
||||
:param event: The ``slug`` field of the event to modify
|
||||
:param id: The ``id`` field of the rule to modify
|
||||
:statuscode 200: no error
|
||||
:statuscode 400: The rule could not be modified due to invalid submitted data.
|
||||
:statuscode 401: Authentication failure
|
||||
:statuscode 403: The requested organizer/event/rule does not exist **or** you have no permission to change it.
|
||||
|
||||
|
||||
.. http:delete:: /api/v1/organizers/(organizer)/events/(event)/auto_checkin_rules/(id)/
|
||||
|
||||
Delete a rule.
|
||||
|
||||
**Example request**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
DELETE /api/v1/organizers/bigevents/events/sampleconf/auto_checkin_rules/1/ HTTP/1.1
|
||||
Host: pretix.eu
|
||||
Accept: application/json, text/javascript
|
||||
|
||||
**Example response**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
HTTP/1.1 204 No Content
|
||||
Vary: Accept
|
||||
|
||||
:param organizer: The ``slug`` field of the organizer to modify
|
||||
:param event: The ``slug`` field of the event to modify
|
||||
:param id: The ``id`` field of the rule to delete
|
||||
:statuscode 204: no error
|
||||
:statuscode 401: Authentication failure
|
||||
:statuscode 403: The requested organizer/event/rule does not exist **or** you have no permission to change it **or** this rule cannot be deleted since it is currently in use.
|
||||
@@ -32,6 +32,7 @@ position_count integer Number of ticke
|
||||
checkin_count integer Number of check-ins performed on this list (read-only).
|
||||
include_pending boolean If ``true``, the check-in list also contains tickets from orders in pending state.
|
||||
auto_checkin_sales_channels list of strings All items on the check-in list will be automatically marked as checked-in when purchased through any of the listed sales channels.
|
||||
**Deprecated, will be removed in pretix 2024.10.** Use :ref:`rest-autocheckinrules`: instead.
|
||||
allow_multiple_entries boolean If ``true``, subsequent scans of a ticket on this list should not show a warning but instead be stored as an additional check-in.
|
||||
allow_entry_after_exit boolean If ``true``, subsequent scans of a ticket on this list are valid if the last scan of the ticket was an exit scan.
|
||||
rules object Custom check-in logic. The contents of this field are currently not considered a stable API and modifications through the API are highly discouraged.
|
||||
|
||||
@@ -44,5 +44,7 @@ at :ref:`plugin-docs`.
|
||||
scheduled_exports
|
||||
shredders
|
||||
sendmail_rules
|
||||
auto_checkin_rules
|
||||
billing_invoices
|
||||
billing_var
|
||||
billing_var
|
||||
seats
|
||||
|
||||
@@ -217,6 +217,9 @@ List of all invoices
|
||||
:query boolean is_cancellation: If set to ``true`` or ``false``, only invoices with this value for the field
|
||||
``is_cancellation`` will be returned.
|
||||
:query string order: If set, only invoices belonging to the order with the given order code will be returned.
|
||||
This parameter may be given multiple times. In this case, all invoices matching one of the inputs will be returned.
|
||||
:query string number: If set, only invoices with the given invoice number will be returned.
|
||||
This parameter may be given multiple times. In this case, all invoices matching one of the inputs will be returned.
|
||||
:query string refers: If set, only invoices referring to the given invoice will be returned.
|
||||
:query string locale: If set, only invoices with the given locale will be returned.
|
||||
:query string ordering: Manually set the ordering of results. Valid fields to be used are ``date`` and
|
||||
|
||||
@@ -0,0 +1,262 @@
|
||||
.. _`rest-reusablemedia`:
|
||||
|
||||
Seats
|
||||
=====
|
||||
|
||||
The seat resource represents the seats in a seating plan in a specific event or subevent.
|
||||
|
||||
Resource description
|
||||
--------------------
|
||||
|
||||
The seat resource contains the following public fields:
|
||||
|
||||
.. rst-class:: rest-resource-table
|
||||
|
||||
===================================== ========================== =======================================================
|
||||
Field Type Description
|
||||
===================================== ========================== =======================================================
|
||||
id integer Internal ID of this seat
|
||||
subevent integer Internal ID of the subevent this seat belongs to
|
||||
zone_name string Name of the zone the seat is in
|
||||
row_name string Name/number of the row the seat is in
|
||||
row_label string Additional label of the row (or ``null``)
|
||||
seat_number string Number of the seat within the row
|
||||
seat_label string Additional label of the seat (or ``null``)
|
||||
seat_guid string Identifier of the seat within the seating plan
|
||||
product integer Internal ID of the product that is mapped to this seat
|
||||
blocked boolean Whether this seat is blocked manually.
|
||||
orderposition integer / object Internal ID of an order position reserving this seat.
|
||||
cartposition integer / object Internal ID of a cart position reserving this seat.
|
||||
voucher integer / object Internal ID of a voucher reserving this seat.
|
||||
===================================== ========================== =======================================================
|
||||
|
||||
Endpoints
|
||||
---------
|
||||
|
||||
.. http:get:: /api/v1/organizers/(organizer)/events/(event)/seats/
|
||||
.. http:get:: /api/v1/organizers/(organizer)/events/(event)/subevents/(subevent_id)/seats/
|
||||
|
||||
Returns a list of all seats in the specified event or subevent. Depending on whether the event has subevents, the
|
||||
according endpoint has to be used.
|
||||
|
||||
**Example request**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
GET /api/v1/organizers/bigevents/events/sampleconf/seats/ HTTP/1.1
|
||||
Host: pretix.eu
|
||||
Accept: application/json
|
||||
|
||||
**Example response**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
HTTP/1.1 200 OK
|
||||
Vary: Accept
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"count": 500,
|
||||
"next": "https://pretix.eu/api/v1/organizers/bigevents/events/sampleconf/seats/?page=2",
|
||||
"previous": null,
|
||||
"results": [
|
||||
{
|
||||
"id": 1633,
|
||||
"subevent": null,
|
||||
"zone_name": "Ground floor",
|
||||
"row_name": "1",
|
||||
"row_label": null,
|
||||
"seat_number": "1",
|
||||
"seat_label": null,
|
||||
"seat_guid": "b9746230-6f31-4f41-bbc9-d6b60bdb3342",
|
||||
"product": 104,
|
||||
"blocked": false,
|
||||
"orderposition": null,
|
||||
"cartposition": null,
|
||||
"voucher": 51
|
||||
},
|
||||
{
|
||||
"id": 1634,
|
||||
"subevent": null,
|
||||
"zone_name": "Ground floor",
|
||||
"row_name": "1",
|
||||
"row_label": null,
|
||||
"seat_number": "2",
|
||||
"seat_label": null,
|
||||
"seat_guid": "1d29fe20-8e1e-4984-b0ee-2773b0d07e07",
|
||||
"product": 104,
|
||||
"blocked": true,
|
||||
"orderposition": 4321,
|
||||
"cartposition": null,
|
||||
"voucher": null
|
||||
},
|
||||
// ...
|
||||
]
|
||||
}
|
||||
|
||||
:query integer page: The page number in case of a multi-page result set, default is 1.
|
||||
:query string zone_name: Only show seats with the given zone_name.
|
||||
:query string row_name: Only show seats with the given row_name.
|
||||
:query string row_label: Only show seats with the given row_label.
|
||||
:query string seat_number: Only show seats with the given seat_number.
|
||||
:query string seat_label: Only show seats with the given seat_label.
|
||||
:query string seat_guid: Only show seats with the given seat_guid.
|
||||
:query boolean blocked: Only show seats with the given blocked status.
|
||||
:query boolean is_available: Only show seats that are (not) currently available.
|
||||
:query string expand: If you pass ``"orderposition"``, ``"cartposition"``, or ``"voucher"``, the respective field will be
|
||||
shown as a nested value instead of just an ID. This requires permission to access that object.
|
||||
The nested objects are identical to the respective resources, except that order positions
|
||||
will have an attribute of the format ``"order": {"code": "ABCDE", "event": "eventslug"}`` to make
|
||||
matching easier, and won't include the `seat` attribute, as that would be redundant.
|
||||
The parameter can be given multiple times.
|
||||
:param organizer: The ``slug`` field of the organizer to fetch
|
||||
:param event: The ``slug`` field of the event to fetch
|
||||
:param subevent_id: The ``id`` field of the subevent to fetch
|
||||
:statuscode 200: no error
|
||||
:statuscode 401: Authentication failure
|
||||
:statuscode 403: The requested organizer does not exist **or** you have no permission to view this resource.
|
||||
:statuscode 404: Endpoint without subevent id was used for event with subevents, or vice versa.
|
||||
|
||||
.. http:get:: /api/v1/organizers/(organizer)/events/(event)/seats/(id)/
|
||||
.. http:get:: /api/v1/organizers/(organizer)/events/(event)/subevents/(subevent_id)/seats/(id)/
|
||||
|
||||
Returns information on one seat, identified by its ID.
|
||||
|
||||
**Example request**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
GET /api/v1/organizers/bigevents/events/sampleconf/seats/1634/?expand=orderposition HTTP/1.1
|
||||
Host: pretix.eu
|
||||
Accept: application/json
|
||||
|
||||
**Example response**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
HTTP/1.1 200 OK
|
||||
Vary: Accept
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"id": 1634,
|
||||
"subevent": null,
|
||||
"zone_name": "Ground floor",
|
||||
"row_name": "1",
|
||||
"row_label": null,
|
||||
"seat_number": "2",
|
||||
"seat_label": null,
|
||||
"seat_guid": "1d29fe20-8e1e-4984-b0ee-2773b0d07e07",
|
||||
"product": 104,
|
||||
"blocked": true,
|
||||
"orderposition": {
|
||||
"id": 134,
|
||||
"order": {
|
||||
"code": "U0HW7",
|
||||
"event": "sampleconf"
|
||||
},
|
||||
"positionid": 1,
|
||||
"item": 104,
|
||||
"variation": 59,
|
||||
"price": "60.00",
|
||||
"attendee_name": "",
|
||||
"attendee_name_parts": {
|
||||
"_scheme": "given_family"
|
||||
},
|
||||
"company": null,
|
||||
"street": null,
|
||||
"zipcode": null,
|
||||
"city": null,
|
||||
"country": null,
|
||||
"state": null,
|
||||
"discount": null,
|
||||
"attendee_email": null,
|
||||
"voucher": null,
|
||||
"tax_rate": "0.00",
|
||||
"tax_value": "0.00",
|
||||
"secret": "4rfgp263jduratnsvwvy6cc6r6wnptbj",
|
||||
"addon_to": null,
|
||||
"subevent": null,
|
||||
"checkins": [],
|
||||
"downloads": [],
|
||||
"answers": [],
|
||||
"tax_rule": null,
|
||||
"pseudonymization_id": "ZSNYSG3URZ",
|
||||
"canceled": false,
|
||||
"valid_from": null,
|
||||
"valid_until": null,
|
||||
"blocked": null,
|
||||
"voucher_budget_use": null
|
||||
},
|
||||
"cartposition": null,
|
||||
"voucher": null
|
||||
}
|
||||
|
||||
:param organizer: The ``slug`` field of the organizer to fetch
|
||||
:param event: The ``slug`` field of the event to fetch
|
||||
:param subevent_id: The ``id`` field of the subevent to fetch
|
||||
:param id: The ``id`` field of the seat to fetch
|
||||
:query string expand: If you pass ``"orderposition"``, ``"cartposition"``, or ``"voucher"``, the respective field will be
|
||||
shown as a nested value instead of just an ID. This requires permission to access that object.
|
||||
The nested objects are identical to the respective resources, except that order positions
|
||||
will have an attribute of the format ``"order": {"code": "ABCDE", "event": "eventslug"}`` to make
|
||||
matching easier, and won't include the `seat` attribute, as that would be redundant.
|
||||
The parameter can be given multiple times.
|
||||
:statuscode 200: no error
|
||||
:statuscode 401: Authentication failure
|
||||
:statuscode 403: The requested organizer does not exist **or** you have no permission to view this resource.
|
||||
:statuscode 404: Seat does not exist; or the endpoint without subevent id was used for event with subevents, or vice versa.
|
||||
|
||||
.. http:patch:: /api/v1/organizers/(organizer)/events/(event)/seats/(id)/
|
||||
.. http:patch:: /api/v1/organizers/(organizer)/events/(event)/subevents/(id)/seats/(id)/
|
||||
|
||||
Update a seat.
|
||||
|
||||
You can only change the ``blocked`` field.
|
||||
|
||||
**Example request**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
PATCH /api/v1/organizers/bigevents/events/sampleconf/seats/1636/ HTTP/1.1
|
||||
Host: pretix.eu
|
||||
Accept: application/json, text/javascript
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"blocked": true
|
||||
}
|
||||
|
||||
**Example response**:
|
||||
|
||||
.. sourcecode:: http
|
||||
|
||||
HTTP/1.1 200 OK
|
||||
Vary: Accept
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"id": 1636,
|
||||
"subevent": null,
|
||||
"zone_name": "Ground floor",
|
||||
"row_name": "1",
|
||||
"row_label": null,
|
||||
"seat_number": "4",
|
||||
"seat_label": null,
|
||||
"seat_guid": "6c0e29e5-05d6-421f-99f3-afd01478ecad",
|
||||
"product": 104,
|
||||
"blocked": true,
|
||||
"orderposition": null,
|
||||
"cartposition": null,
|
||||
"voucher": null
|
||||
},
|
||||
|
||||
:param organizer: The ``slug`` field of the organizer to modify
|
||||
:param event: The ``slug`` field of the event to modify
|
||||
:param subevent_id: The ``id`` field of the subevent to modify
|
||||
:param id: The ``id`` field of the seat to modify
|
||||
:statuscode 200: no error
|
||||
:statuscode 400: The seat could not be modified due to invalid submitted data
|
||||
:statuscode 401: Authentication failure
|
||||
:statuscode 403: The requested organizer or event does not exist **or** you have no permission to change this resource.
|
||||
:statuscode 404: Seat does not exist; or the endpoint without subevent id was used for event with subevents, or vice versa.
|
||||
@@ -1,6 +1,8 @@
|
||||
Scheduled email rules
|
||||
=====================
|
||||
|
||||
This feature requires the bundled ``pretix.plugins.sendmail`` plugin to be active for the event in order to work properly.
|
||||
|
||||
Resource description
|
||||
--------------------
|
||||
|
||||
@@ -48,6 +50,7 @@ send_to string Can be ``"order
|
||||
or ``"both"``.
|
||||
date. Otherwise it is relative to the event start date.
|
||||
===================================== ========================== =======================================================
|
||||
|
||||
.. versionchanged:: 2023.7
|
||||
|
||||
The ``include_pending`` field has been deprecated.
|
||||
|
||||
@@ -116,6 +116,7 @@ Endpoints
|
||||
}
|
||||
|
||||
:query integer page: The page number in case of a multi-page result set, default is 1
|
||||
:query boolean enabled: Only show webhooks that are or are not enabled
|
||||
:param organizer: The ``slug`` field of the organizer to fetch
|
||||
:statuscode 200: no error
|
||||
:statuscode 401: Authentication failure
|
||||
|
||||
@@ -136,9 +136,7 @@ It is a good idea to put this command into your git hook ``.git/hooks/pre-commit
|
||||
for example, to check for any errors in any staged files when committing::
|
||||
|
||||
#!/bin/bash
|
||||
cd $GIT_DIR/../src
|
||||
export GIT_WORK_TREE=../
|
||||
export GIT_DIR=../.git
|
||||
|
||||
source ../env/bin/activate # Adjust to however you activate your virtual environment
|
||||
for file in $(git diff --cached --name-only | grep -E '\.py$' | grep -Ev "migrations|mt940\.py|pretix/settings\.py|make_testdata\.py|testutils/settings\.py|tests/settings\.py|pretix/base/models/__init__\.py|.*_pb2\.py")
|
||||
do
|
||||
|
||||
@@ -6,5 +6,4 @@ sphinxcontrib-images
|
||||
sphinxcontrib-jquery
|
||||
sphinxcontrib-spelling==8.*
|
||||
sphinxemoji
|
||||
pygments-markdown-lexer
|
||||
pyenchant==3.2.*
|
||||
|
||||
@@ -7,5 +7,4 @@ sphinxcontrib-images
|
||||
sphinxcontrib-jquery
|
||||
sphinxcontrib-spelling==8.*
|
||||
sphinxemoji
|
||||
pygments-markdown-lexer
|
||||
pyenchant==3.2.*
|
||||
|
||||
@@ -87,9 +87,6 @@ Android 7 Support planned until at least 06/2025.
|
||||
Android 6 Support planned until at least 06/2025.
|
||||
Android 5 | Support planned until at least 06/2025.
|
||||
| No support for Evolis printers on some devices.
|
||||
Android 4.4 | Support planned until at least 06/2024.
|
||||
| No support for USB printers.
|
||||
| No support for Evolis printers.
|
||||
Android 4 Support dropped.
|
||||
=========================== ==========================================================
|
||||
|
||||
|
||||
@@ -450,6 +450,19 @@ Further reading:
|
||||
* `Stripe Payment Method Domain registration`_
|
||||
|
||||
|
||||
Content Security Policy
|
||||
-----------------------
|
||||
|
||||
When using a Content Security Policy (CSP) on your website, you may need to make some adjustments. If your pretix
|
||||
shop is running under a custom domain, you need to add the following rules:
|
||||
|
||||
* ``script-src``: ``'unsafe-eval' https://pretix.eu`` (adjust to your domain for self-hosted pretix)
|
||||
* ``style-src``: ``https://pretix.eu`` (adjust to your domain for self-hosted pretix **and** for custom domain on pretix Hosted)
|
||||
* ``connect-src``: ``https://pretix.eu`` (adjust to your domain for self-hosted pretix **and** for custom domain on pretix Hosted)
|
||||
* ``frame-src``: ``https://pretix.eu`` (adjust to your domain for self-hosted pretix **and** for custom domain on pretix Hosted)
|
||||
* ``img-src``: ``https://pretix.eu`` (adjust to your domain for self-hosted pretix **and** for custom domain on pretix Hosted) and for pretix Hosted additionally add ``https://cdn.pretix.space``
|
||||
|
||||
|
||||
External payment providers and Cross-Origin-Opener-Policy
|
||||
---------------------------------------------------------
|
||||
|
||||
|
||||
+9
-11
@@ -22,7 +22,7 @@ classifiers = [
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Framework :: Django :: 4.1",
|
||||
"Framework :: Django :: 4.2",
|
||||
]
|
||||
|
||||
dependencies = [
|
||||
@@ -35,12 +35,11 @@ dependencies = [
|
||||
"cryptography>=3.4.2",
|
||||
"css-inline==0.14.*",
|
||||
"defusedcsv>=1.1.0",
|
||||
"dj-static",
|
||||
"Django[argon2]==4.2.*",
|
||||
"Django[argon2]==4.2.*,>=4.2.15",
|
||||
"django-bootstrap3==24.2",
|
||||
"django-compressor==4.5.1",
|
||||
"django-countries==7.6.*",
|
||||
"django-filter==24.2",
|
||||
"django-filter==24.3",
|
||||
"django-formset-js-improved==0.5.0.3",
|
||||
"django-formtools==2.5.1",
|
||||
"django-hierarkey==1.2.*",
|
||||
@@ -62,10 +61,10 @@ dependencies = [
|
||||
"importlib_metadata==8.*", # Polyfill, we can probably drop this once we require Python 3.10+
|
||||
"isoweek",
|
||||
"jsonschema",
|
||||
"kombu==5.3.*",
|
||||
"kombu==5.4.*",
|
||||
"libsass==0.23.*",
|
||||
"lxml",
|
||||
"markdown==3.6", # 3.3.5 requires importlib-metadata>=4.4, but django-bootstrap3 requires importlib-metadata<3.
|
||||
"markdown==3.7", # 3.3.5 requires importlib-metadata>=4.4, but django-bootstrap3 requires importlib-metadata<3.
|
||||
# We can upgrade markdown again once django-bootstrap3 upgrades or once we drop Python 3.6 and 3.7
|
||||
"mt-940==4.30.*",
|
||||
"oauthlib==3.2.*",
|
||||
@@ -73,7 +72,7 @@ dependencies = [
|
||||
"packaging",
|
||||
"paypalrestsdk==1.13.*",
|
||||
"paypal-checkout-serversdk==1.0.*",
|
||||
"PyJWT==2.8.*",
|
||||
"PyJWT==2.9.*",
|
||||
"phonenumberslite==8.13.*",
|
||||
"Pillow==10.4.*",
|
||||
"pretix-plugin-build",
|
||||
@@ -83,7 +82,7 @@ dependencies = [
|
||||
"pycparser==2.22",
|
||||
"pycryptodome==3.20.*",
|
||||
"pypdf==4.3.*",
|
||||
"python-bidi==0.5.*", # Support for Arabic in reportlab
|
||||
"python-bidi==0.6.*", # Support for Arabic in reportlab
|
||||
"python-dateutil==2.9.*",
|
||||
"pytz",
|
||||
"pytz-deprecation-shim==0.1.*",
|
||||
@@ -92,10 +91,9 @@ dependencies = [
|
||||
"redis==5.0.*",
|
||||
"reportlab==4.2.*",
|
||||
"requests==2.31.*",
|
||||
"sentry-sdk==2.10.*",
|
||||
"sentry-sdk==2.13.*",
|
||||
"sepaxml==2.6.*",
|
||||
"slimit",
|
||||
"static3==0.7.*",
|
||||
"stripe==7.9.*",
|
||||
"text-unidecode==1.*",
|
||||
"tlds>=2020041600",
|
||||
@@ -110,7 +108,7 @@ dependencies = [
|
||||
[project.optional-dependencies]
|
||||
memcached = ["pylibmc"]
|
||||
dev = [
|
||||
"aiohttp==3.9.*",
|
||||
"aiohttp==3.10.*",
|
||||
"coverage",
|
||||
"coveralls",
|
||||
"fakeredis==2.23.*",
|
||||
|
||||
@@ -19,4 +19,4 @@
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
__version__ = "2024.7.0"
|
||||
__version__ = "2024.8.0.dev0"
|
||||
|
||||
@@ -62,6 +62,7 @@ INSTALLED_APPS = [
|
||||
'pretix.plugins.badges',
|
||||
'pretix.plugins.manualpayment',
|
||||
'pretix.plugins.returnurl',
|
||||
'pretix.plugins.autocheckin',
|
||||
'pretix.plugins.webcheckin',
|
||||
'django_countries',
|
||||
'oauth2_provider',
|
||||
|
||||
@@ -0,0 +1,82 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
from django import forms
|
||||
from django.core.exceptions import ValidationError
|
||||
from django.db.models import Q
|
||||
from django.db.models.constants import LOOKUP_SEP
|
||||
from django.forms import MultipleChoiceField
|
||||
from django_filters import Filter
|
||||
from django_filters.conf import settings
|
||||
|
||||
|
||||
class MultipleCharField(forms.CharField):
|
||||
widget = forms.MultipleHiddenInput
|
||||
|
||||
def to_python(self, value):
|
||||
if not value:
|
||||
return []
|
||||
elif not isinstance(value, (list, tuple)):
|
||||
raise ValidationError(
|
||||
MultipleChoiceField.default_error_messages["invalid_list"], code="invalid_list"
|
||||
)
|
||||
return [str(val) for val in value]
|
||||
|
||||
|
||||
class MultipleCharFilter(Filter):
|
||||
"""
|
||||
This filter performs OR(by default) or AND(using conjoined=True) query
|
||||
on the selected inputs.
|
||||
"""
|
||||
|
||||
field_class = MultipleCharField
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
self.conjoined = kwargs.pop("conjoined", False)
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
def filter(self, qs, value):
|
||||
if not value:
|
||||
# Even though not a noop, no point filtering if empty.
|
||||
return qs
|
||||
|
||||
if not self.conjoined:
|
||||
q = Q()
|
||||
for v in set(value):
|
||||
predicate = self.get_filter_predicate(v)
|
||||
if self.conjoined:
|
||||
qs = self.get_method(qs)(**predicate)
|
||||
else:
|
||||
q |= Q(**predicate)
|
||||
|
||||
if not self.conjoined:
|
||||
qs = self.get_method(qs)(q)
|
||||
|
||||
return qs.distinct() if self.distinct else qs
|
||||
|
||||
def get_filter_predicate(self, v):
|
||||
name = self.field_name
|
||||
if name and self.lookup_expr != settings.DEFAULT_LOOKUP_EXPR:
|
||||
name = LOOKUP_SEP.join([name, self.lookup_expr])
|
||||
try:
|
||||
return {name: getattr(v, self.field.to_field_name)}
|
||||
except (AttributeError, TypeError):
|
||||
return {name: v}
|
||||
@@ -35,7 +35,7 @@
|
||||
import logging
|
||||
|
||||
from django.conf import settings
|
||||
from django.core.exceptions import ValidationError
|
||||
from django.core.exceptions import PermissionDenied, ValidationError
|
||||
from django.db import transaction
|
||||
from django.utils.crypto import get_random_string
|
||||
from django.utils.functional import cached_property
|
||||
@@ -52,7 +52,8 @@ from pretix.api.serializers import (
|
||||
from pretix.api.serializers.i18n import I18nAwareModelSerializer
|
||||
from pretix.api.serializers.settings import SettingsSerializer
|
||||
from pretix.base.models import (
|
||||
Device, Event, SalesChannel, TaxRule, TeamAPIToken,
|
||||
CartPosition, Device, Event, OrderPosition, SalesChannel, Seat, TaxRule,
|
||||
TeamAPIToken, Voucher,
|
||||
)
|
||||
from pretix.base.models.event import SubEvent
|
||||
from pretix.base.models.items import (
|
||||
@@ -844,6 +845,7 @@ class EventSettingsSerializer(SettingsSerializer):
|
||||
'reusable_media_type_nfc_mf0aes_autocreate_giftcard',
|
||||
'reusable_media_type_nfc_mf0aes_autocreate_giftcard_currency',
|
||||
'reusable_media_type_nfc_mf0aes_random_uid',
|
||||
'seating_allow_blocked_seats_for_channel',
|
||||
]
|
||||
readonly_fields = [
|
||||
# These are read-only since they are currently only settable on organizers, not events
|
||||
@@ -969,3 +971,77 @@ class ItemMetaPropertiesSerializer(I18nAwareModelSerializer):
|
||||
class Meta:
|
||||
model = ItemMetaProperty
|
||||
fields = ('id', 'name', 'default', 'required', 'allowed_values')
|
||||
|
||||
|
||||
def prefetch_by_id(items, qs, id_attr, target_attr):
|
||||
"""
|
||||
Prefetches a related object on each item in the given list of items by searching by id or another
|
||||
unique field. The id value is read from the attribute on item specified in `id_attr`, searched on queryset `qs` by
|
||||
the primary key, and the resulting prefetched model object is stored into `target_attr` on the item.
|
||||
"""
|
||||
ids = [getattr(item, id_attr) for item in items if getattr(item, id_attr)]
|
||||
if ids:
|
||||
result = qs.in_bulk(id_list=ids)
|
||||
for item in items:
|
||||
setattr(item, target_attr, result.get(getattr(item, id_attr)))
|
||||
|
||||
|
||||
class SeatSerializer(I18nAwareModelSerializer):
|
||||
orderposition = serializers.IntegerField(source='orderposition_id')
|
||||
cartposition = serializers.IntegerField(source='cartposition_id')
|
||||
voucher = serializers.IntegerField(source='voucher_id')
|
||||
|
||||
class Meta:
|
||||
model = Seat
|
||||
read_only_fields = (
|
||||
'id', 'subevent', 'zone_name', 'row_name', 'row_label',
|
||||
'seat_number', 'seat_label', 'seat_guid', 'product',
|
||||
'orderposition', 'cartposition', 'voucher',
|
||||
)
|
||||
fields = (
|
||||
'id', 'subevent', 'zone_name', 'row_name', 'row_label',
|
||||
'seat_number', 'seat_label', 'seat_guid', 'product', 'blocked',
|
||||
'orderposition', 'cartposition', 'voucher',
|
||||
)
|
||||
|
||||
def prefetch_expanded_data(self, items, request, expand_fields):
|
||||
if 'orderposition' in expand_fields:
|
||||
if 'can_view_orders' not in request.eventpermset:
|
||||
raise PermissionDenied('can_view_orders permission required for expand=orderposition')
|
||||
prefetch_by_id(items, OrderPosition.objects.prefetch_related('order'), 'orderposition_id', 'orderposition')
|
||||
if 'cartposition' in expand_fields:
|
||||
if 'can_view_orders' not in request.eventpermset:
|
||||
raise PermissionDenied('can_view_orders permission required for expand=cartposition')
|
||||
prefetch_by_id(items, CartPosition.objects, 'cartposition_id', 'cartposition')
|
||||
if 'voucher' in expand_fields:
|
||||
if 'can_view_vouchers' not in request.eventpermset:
|
||||
raise PermissionDenied('can_view_vouchers permission required for expand=voucher')
|
||||
prefetch_by_id(items, Voucher.objects, 'voucher_id', 'voucher')
|
||||
|
||||
def __init__(self, instance, *args, **kwargs):
|
||||
if not kwargs.get('data'):
|
||||
self.prefetch_expanded_data(instance if hasattr(instance, '__iter__') else [instance],
|
||||
kwargs['context']['request'],
|
||||
kwargs['context']['expand_fields'])
|
||||
|
||||
super().__init__(instance, *args, **kwargs)
|
||||
|
||||
if 'orderposition' in self.context['expand_fields']:
|
||||
from pretix.api.serializers.media import (
|
||||
NestedOrderPositionSerializer,
|
||||
)
|
||||
self.fields['orderposition'] = NestedOrderPositionSerializer(read_only=True, context=self.context['order_context'])
|
||||
try:
|
||||
del self.fields['orderposition'].fields['seat']
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
if 'cartposition' in self.context['expand_fields']:
|
||||
from pretix.api.serializers.cart import CartPositionSerializer
|
||||
self.fields['cartposition'] = CartPositionSerializer(read_only=True)
|
||||
del self.fields['cartposition'].fields['seat']
|
||||
|
||||
if 'voucher' in self.context['expand_fields']:
|
||||
from pretix.api.serializers.voucher import VoucherSerializer
|
||||
self.fields['voucher'] = VoucherSerializer(read_only=True)
|
||||
del self.fields['voucher'].fields['seat']
|
||||
|
||||
@@ -87,6 +87,7 @@ event_router.register(r'invoices', order.InvoiceViewSet)
|
||||
event_router.register(r'revokedsecrets', order.RevokedSecretViewSet, basename='revokedsecrets')
|
||||
event_router.register(r'blockedsecrets', order.BlockedSecretViewSet, basename='blockedsecrets')
|
||||
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'cartpositions', cart.CartPositionViewSet)
|
||||
@@ -95,6 +96,9 @@ event_router.register(r'exporters', exporters.EventExportersViewSet, basename='e
|
||||
event_router.register(r'shredders', shredders.EventShreddersViewSet, basename='shredders')
|
||||
event_router.register(r'item_meta_properties', event.ItemMetaPropertiesViewSet)
|
||||
|
||||
subevent_router = routers.DefaultRouter()
|
||||
subevent_router.register(r'seats', event.SeatViewSet)
|
||||
|
||||
checkinlist_router = routers.DefaultRouter()
|
||||
checkinlist_router.register(r'positions', checkin.CheckinListPositionViewSet, basename='checkinlistpos')
|
||||
|
||||
@@ -132,6 +136,7 @@ urlpatterns = [
|
||||
re_path(r'^organizers/(?P<organizer>[^/]+)/events/(?P<event>[^/]+)/settings/$', event.EventSettingsView.as_view(),
|
||||
name="event.settings"),
|
||||
re_path(r'^organizers/(?P<organizer>[^/]+)/events/(?P<event>[^/]+)/', include(event_router.urls)),
|
||||
re_path(r'^organizers/(?P<organizer>[^/]+)/events/(?P<event>[^/]+)/subevents/(?P<subevent>\d+)/', include(subevent_router.urls)),
|
||||
re_path(r'^organizers/(?P<organizer>[^/]+)/teams/(?P<team>[^/]+)/', include(team_router.urls)),
|
||||
re_path(r'^organizers/(?P<organizer>[^/]+)/events/(?P<event>[^/]+)/items/(?P<item>[^/]+)/', include(item_router.urls)),
|
||||
re_path(r'^organizers/(?P<organizer>[^/]+)/events/(?P<event>[^/]+)/questions/(?P<question>[^/]+)/',
|
||||
|
||||
@@ -40,7 +40,9 @@ from django.utils.timezone import now
|
||||
from django_filters.rest_framework import DjangoFilterBackend, FilterSet
|
||||
from django_scopes import scopes_disabled
|
||||
from rest_framework import serializers, views, viewsets
|
||||
from rest_framework.exceptions import PermissionDenied, ValidationError
|
||||
from rest_framework.exceptions import (
|
||||
NotFound, PermissionDenied, ValidationError,
|
||||
)
|
||||
from rest_framework.generics import get_object_or_404
|
||||
from rest_framework.response import Response
|
||||
|
||||
@@ -48,12 +50,12 @@ from pretix.api.auth.permission import EventCRUDPermission
|
||||
from pretix.api.pagination import TotalOrderingFilter
|
||||
from pretix.api.serializers.event import (
|
||||
CloneEventSerializer, DeviceEventSettingsSerializer, EventSerializer,
|
||||
EventSettingsSerializer, ItemMetaPropertiesSerializer, SubEventSerializer,
|
||||
TaxRuleSerializer,
|
||||
EventSettingsSerializer, ItemMetaPropertiesSerializer, SeatSerializer,
|
||||
SubEventSerializer, TaxRuleSerializer,
|
||||
)
|
||||
from pretix.api.views import ConditionalListView
|
||||
from pretix.base.models import (
|
||||
CartPosition, Device, Event, ItemMetaProperty, SeatCategoryMapping,
|
||||
CartPosition, Device, Event, ItemMetaProperty, Seat, SeatCategoryMapping,
|
||||
TaxRule, TeamAPIToken,
|
||||
)
|
||||
from pretix.base.models.event import SubEvent
|
||||
@@ -667,3 +669,77 @@ class EventSettingsView(views.APIView):
|
||||
'request': request
|
||||
})
|
||||
return Response(s.data)
|
||||
|
||||
|
||||
class SeatFilter(FilterSet):
|
||||
is_available = django_filters.BooleanFilter(method="is_available_qs")
|
||||
|
||||
def is_available_qs(self, queryset, name, value):
|
||||
expr = (
|
||||
Q(orderposition_id__isnull=True, cartposition_id__isnull=True, voucher_id__isnull=True)
|
||||
)
|
||||
if self.request.event.settings.seating_minimal_distance:
|
||||
expr = expr & Q(has_closeby_taken=False)
|
||||
if value:
|
||||
return queryset.filter(expr)
|
||||
else:
|
||||
return queryset.exclude(expr)
|
||||
|
||||
class Meta:
|
||||
model = Seat
|
||||
fields = ('zone_name', 'row_name', 'row_label', 'seat_number', 'seat_label', 'seat_guid', 'blocked',)
|
||||
|
||||
|
||||
class SeatViewSet(ConditionalListView, viewsets.ModelViewSet):
|
||||
serializer_class = SeatSerializer
|
||||
queryset = Seat.objects.none()
|
||||
write_permission = 'can_change_event_settings'
|
||||
filter_backends = (DjangoFilterBackend, )
|
||||
filterset_class = SeatFilter
|
||||
|
||||
def get_queryset(self):
|
||||
if self.request.event.has_subevents and 'subevent' in self.request.resolver_match.kwargs:
|
||||
try:
|
||||
subevent = self.request.event.subevents.get(pk=self.request.resolver_match.kwargs['subevent'])
|
||||
except SubEvent.DoesNotExist:
|
||||
raise NotFound('Subevent not found')
|
||||
qs = Seat.annotated(
|
||||
event_id=self.request.event.id,
|
||||
subevent=subevent,
|
||||
qs=subevent.seats.all(),
|
||||
annotate_ids=True,
|
||||
minimal_distance=self.request.event.settings.seating_minimal_distance,
|
||||
distance_only_within_row=self.request.event.settings.seating_distance_only_within_row,
|
||||
)
|
||||
elif not self.request.event.has_subevents and 'subevent' not in self.request.resolver_match.kwargs:
|
||||
qs = Seat.annotated(
|
||||
event_id=self.request.event.id,
|
||||
subevent=None,
|
||||
qs=self.request.event.seats.all(),
|
||||
annotate_ids=True,
|
||||
minimal_distance=self.request.event.settings.seating_minimal_distance,
|
||||
distance_only_within_row=self.request.event.settings.seating_distance_only_within_row,
|
||||
)
|
||||
else:
|
||||
raise NotFound('Please use the subevent-specific endpoint' if self.request.event.has_subevents
|
||||
else 'This event has no subevents')
|
||||
|
||||
return qs
|
||||
|
||||
def get_serializer_context(self):
|
||||
ctx = super().get_serializer_context()
|
||||
ctx['expand_fields'] = self.request.query_params.getlist('expand')
|
||||
ctx['order_context'] = {
|
||||
'event': self.request.event,
|
||||
'pdf_data': None,
|
||||
}
|
||||
return ctx
|
||||
|
||||
def perform_update(self, serializer):
|
||||
super().perform_update(serializer)
|
||||
serializer.instance.event.log_action(
|
||||
"pretix.event.seats.blocks.changed",
|
||||
user=self.request.user,
|
||||
auth=self.request.auth,
|
||||
data={"seats": [serializer.instance.pk]},
|
||||
)
|
||||
|
||||
@@ -49,6 +49,7 @@ from rest_framework.mixins import CreateModelMixin
|
||||
from rest_framework.permissions import SAFE_METHODS
|
||||
from rest_framework.response import Response
|
||||
|
||||
from pretix.api.filters import MultipleCharFilter
|
||||
from pretix.api.models import OAuthAccessToken
|
||||
from pretix.api.pagination import TotalOrderingFilter
|
||||
from pretix.api.serializers.order import (
|
||||
@@ -1825,17 +1826,14 @@ class RefundViewSet(CreateModelMixin, viewsets.ReadOnlyModelViewSet):
|
||||
with scopes_disabled():
|
||||
class InvoiceFilter(FilterSet):
|
||||
refers = django_filters.CharFilter(method='refers_qs')
|
||||
number = django_filters.CharFilter(method='nr_qs')
|
||||
order = django_filters.CharFilter(field_name='order', lookup_expr='code__iexact')
|
||||
number = MultipleCharFilter(field_name='nr', lookup_expr='iexact')
|
||||
order = MultipleCharFilter(field_name='order', lookup_expr='code__iexact')
|
||||
|
||||
def refers_qs(self, queryset, name, value):
|
||||
return queryset.annotate(
|
||||
refers_nr=Concat('refers__prefix', 'refers__invoice_no')
|
||||
).filter(refers_nr__iexact=value)
|
||||
|
||||
def nr_qs(self, queryset, name, value):
|
||||
return queryset.filter(nr__iexact=value)
|
||||
|
||||
class Meta:
|
||||
model = Invoice
|
||||
fields = ['order', 'number', 'is_cancellation', 'refers', 'locale']
|
||||
|
||||
@@ -19,6 +19,8 @@
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
import django_filters
|
||||
from django_filters.rest_framework import DjangoFilterBackend, FilterSet
|
||||
from rest_framework import viewsets
|
||||
|
||||
from pretix.api.models import WebHook
|
||||
@@ -26,11 +28,17 @@ from pretix.api.serializers.webhooks import WebHookSerializer
|
||||
from pretix.helpers.dicts import merge_dicts
|
||||
|
||||
|
||||
class WebhookFilter(FilterSet):
|
||||
enabled = django_filters.rest_framework.BooleanFilter()
|
||||
|
||||
|
||||
class WebHookViewSet(viewsets.ModelViewSet):
|
||||
serializer_class = WebHookSerializer
|
||||
queryset = WebHook.objects.none()
|
||||
permission = 'can_change_organizer_settings'
|
||||
write_permission = 'can_change_organizer_settings'
|
||||
filter_backends = (DjangoFilterBackend,)
|
||||
filterset_class = WebhookFilter
|
||||
|
||||
def get_queryset(self):
|
||||
return self.request.organizer.webhooks.prefetch_related('listeners')
|
||||
|
||||
@@ -207,10 +207,13 @@ class ListExporter(BaseExporter):
|
||||
def get_filename(self):
|
||||
return 'export'
|
||||
|
||||
def get_csv_encoding(self):
|
||||
return 'utf-8'
|
||||
|
||||
def _render_csv(self, form_data, output_file=None, **kwargs):
|
||||
if output_file:
|
||||
if 'b' in output_file.mode:
|
||||
output_file = io.TextIOWrapper(output_file, encoding='utf-8', newline='')
|
||||
output_file = io.TextIOWrapper(output_file, encoding=self.get_csv_encoding(), errors='replace', newline='')
|
||||
writer = csv.writer(output_file, **kwargs)
|
||||
total = 0
|
||||
counter = 0
|
||||
@@ -246,7 +249,7 @@ class ListExporter(BaseExporter):
|
||||
if counter % max(10, total // 100) == 0:
|
||||
self.progress_callback(counter / total * 100)
|
||||
writer.writerow(line)
|
||||
return self.get_filename() + '.csv', 'text/csv', output.getvalue().encode("utf-8")
|
||||
return self.get_filename() + '.csv', 'text/csv', output.getvalue().encode(self.get_csv_encoding(), errors='replace')
|
||||
|
||||
def prepare_xlsx_sheet(self, ws):
|
||||
pass
|
||||
|
||||
@@ -38,6 +38,7 @@ from datetime import datetime
|
||||
from django import forms
|
||||
from django.utils.formats import get_format
|
||||
from django.utils.functional import lazy
|
||||
from django.utils.html import escape
|
||||
from django.utils.timezone import get_current_timezone, now
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
@@ -64,7 +65,7 @@ def format_placeholders_help_text(placeholders, event=None):
|
||||
placeholders = [(k, v.render_sample(event) if event else v) for k, v in placeholders.items()]
|
||||
placeholders.sort(key=lambda x: x[0])
|
||||
phs = [
|
||||
'<button type="button" class="content-placeholder" title="%s">{%s}</button>' % (_("Sample: %s") % v if v else "", k)
|
||||
'<button type="button" class="content-placeholder" title="%s">{%s}</button>' % (escape(_("Sample: %s") % v) if v else "", escape(k))
|
||||
for k, v in placeholders
|
||||
]
|
||||
return _('Available placeholders: {list}').format(
|
||||
|
||||
@@ -102,9 +102,9 @@ class CheckinList(LoggedModel):
|
||||
auto_checkin_sales_channels = models.ManyToManyField(
|
||||
"SalesChannel",
|
||||
verbose_name=_('Sales channels to automatically check in'),
|
||||
help_text=_('All items on this check-in list will be automatically marked as checked-in when purchased through '
|
||||
'any of the selected sales channels. This option can be useful when tickets sold at the box office '
|
||||
'are not checked again before entry and should be considered validated directly upon purchase.'),
|
||||
help_text=_('This option is deprecated and will be removed in the next months. As a replacement, our new plugin '
|
||||
'"Auto check-in" can be used. When we remove this option, we will automatically migrate your event '
|
||||
'to use the new plugin.'),
|
||||
blank=True,
|
||||
)
|
||||
rules = models.JSONField(default=dict, blank=True)
|
||||
|
||||
@@ -185,7 +185,7 @@ class Seat(models.Model):
|
||||
|
||||
@classmethod
|
||||
def annotated(cls, qs, event_id, subevent, ignore_voucher_id=None, minimal_distance=0,
|
||||
ignore_order_id=None, ignore_cart_id=None, distance_only_within_row=False):
|
||||
ignore_order_id=None, ignore_cart_id=None, distance_only_within_row=False, annotate_ids=False):
|
||||
from . import CartPosition, Order, OrderPosition, Voucher
|
||||
|
||||
vqs = Voucher.objects.filter(
|
||||
@@ -214,17 +214,24 @@ class Seat(models.Model):
|
||||
)
|
||||
if ignore_cart_id:
|
||||
cqs = cqs.exclude(cart_id=ignore_cart_id)
|
||||
qs_annotated = qs.annotate(
|
||||
has_order=Exists(
|
||||
opqs
|
||||
),
|
||||
has_cart=Exists(
|
||||
cqs
|
||||
),
|
||||
has_voucher=Exists(
|
||||
vqs
|
||||
if annotate_ids:
|
||||
qs_annotated = qs.annotate(
|
||||
orderposition_id=Subquery(opqs.values('id')),
|
||||
cartposition_id=Subquery(cqs.values('id')),
|
||||
voucher_id=Subquery(vqs.values('id')),
|
||||
)
|
||||
else:
|
||||
qs_annotated = qs.annotate(
|
||||
has_order=Exists(
|
||||
opqs
|
||||
),
|
||||
has_cart=Exists(
|
||||
cqs
|
||||
),
|
||||
has_voucher=Exists(
|
||||
vqs
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
if minimal_distance > 0:
|
||||
# TODO: Is there a more performant implementation on PostgreSQL using
|
||||
@@ -235,7 +242,11 @@ class Seat(models.Model):
|
||||
Power(F('y') - OuterRef('y'), Value(2), output_field=models.FloatField())
|
||||
)
|
||||
).filter(
|
||||
Q(has_order=True) | Q(has_cart=True) | Q(has_voucher=True),
|
||||
(
|
||||
(Q(orderposition_id__isnull=False) | Q(cartposition_id__isnull=False) | Q(voucher_id__isnull=False))
|
||||
if annotate_ids else
|
||||
(Q(has_order=True) | Q(has_cart=True) | Q(has_voucher=True))
|
||||
),
|
||||
distance__lt=minimal_distance ** 2
|
||||
)
|
||||
if distance_only_within_row:
|
||||
|
||||
@@ -587,7 +587,7 @@ class BasePaymentProvider:
|
||||
return rel_date.datetime(self.event).date()
|
||||
|
||||
def _is_available_by_time(self, now_dt=None, cart_id=None, order=None):
|
||||
now_dt = now_dt or now()
|
||||
now_dt = now_dt or time_machine_now()
|
||||
tz = ZoneInfo(self.event.settings.timezone)
|
||||
|
||||
try:
|
||||
|
||||
+47
-8
@@ -956,7 +956,7 @@ class Renderer:
|
||||
)
|
||||
canvas.restoreState()
|
||||
|
||||
def _draw_textarea(self, canvas: Canvas, op: OrderPosition, order: Order, o: dict):
|
||||
def _text_paragraph(self, op: OrderPosition, order: Order, o: dict, legacy_lineheight=False, override_fontsize=None):
|
||||
font = o['fontfamily']
|
||||
|
||||
# Since pdfmetrics.registerFont is global, we want to make sure that no one tries to sneak in a font, they
|
||||
@@ -970,12 +970,13 @@ class Renderer:
|
||||
if o['italic']:
|
||||
font += ' I'
|
||||
|
||||
fontsize = override_fontsize if override_fontsize is not None else float(o['fontsize'])
|
||||
try:
|
||||
ad = getAscentDescent(font, float(o['fontsize']))
|
||||
ad = getAscentDescent(font, fontsize)
|
||||
except KeyError: # font not known, fall back
|
||||
logger.warning(f'Use of unknown font "{font}"')
|
||||
font = 'Open Sans'
|
||||
ad = getAscentDescent(font, float(o['fontsize']))
|
||||
ad = getAscentDescent(font, fontsize)
|
||||
|
||||
align_map = {
|
||||
'left': TA_LEFT,
|
||||
@@ -985,16 +986,17 @@ class Renderer:
|
||||
# lineheight display differs from browser canvas. This calc is just empirical values to get
|
||||
# reportlab render similarly to browser canvas.
|
||||
# for backwards compatability use „uncorrected“ lineheight of 1.0 instead of 1.15
|
||||
lineheight = float(o['lineheight']) * 1.15 if 'lineheight' in o else 1.0
|
||||
lineheight = float(o['lineheight']) * 1.15 if not legacy_lineheight or 'lineheight' in o else 1.0
|
||||
style = ParagraphStyle(
|
||||
name=uuid.uuid4().hex,
|
||||
fontName=font,
|
||||
fontSize=float(o['fontsize']),
|
||||
leading=lineheight * float(o['fontsize']),
|
||||
fontSize=fontsize,
|
||||
leading=lineheight * fontsize,
|
||||
# for backwards compatability use autoLeading if no lineheight is given
|
||||
autoLeading='off' if 'lineheight' in o else 'max',
|
||||
autoLeading='off' if not legacy_lineheight or 'lineheight' in o else 'max',
|
||||
textColor=Color(o['color'][0] / 255, o['color'][1] / 255, o['color'][2] / 255),
|
||||
alignment=align_map[o['align']]
|
||||
alignment=align_map[o['align']],
|
||||
splitLongWords=o.get('splitlongwords', True),
|
||||
)
|
||||
# add an almost-invisible space   after hyphens as word-wrap in ReportLab only works on space chars
|
||||
text = conditional_escape(
|
||||
@@ -1013,6 +1015,41 @@ class Renderer:
|
||||
logger.exception('Reshaping/Bidi fixes failed on string {}'.format(repr(text)))
|
||||
|
||||
p = Paragraph(text, style=style)
|
||||
return p, ad, lineheight
|
||||
|
||||
def _draw_textcontainer(self, canvas: Canvas, op: OrderPosition, order: Order, o: dict):
|
||||
fontsize = float(o['fontsize'])
|
||||
height = float(o['height']) * mm
|
||||
width = float(o['width']) * mm
|
||||
while True:
|
||||
p, ad, lineheight = self._text_paragraph(op, order, o, override_fontsize=fontsize)
|
||||
w, h = p.wrapOn(canvas, width, 1000 * mm)
|
||||
widths = p.getActualLineWidths0()
|
||||
if not widths:
|
||||
break
|
||||
actual_w = max(widths)
|
||||
if not o.get('autoresize', False) or (h <= height and actual_w <= width) or fontsize <= 1.0:
|
||||
break
|
||||
if h > height: # we can do larger steps for height
|
||||
fontsize -= max(1.0, fontsize * .1)
|
||||
else:
|
||||
fontsize -= max(.25, fontsize * .025)
|
||||
|
||||
canvas.saveState()
|
||||
# The ascent/descent offsets here are not really proven to be correct, they're just empirical values to get
|
||||
# reportlab render similarly to browser canvas.
|
||||
canvas.translate(float(o['left']) * mm, float(o['bottom']) * mm + height)
|
||||
canvas.rotate(o.get('rotation', 0) * -1)
|
||||
if o.get('verticalalign', 'top') == 'top':
|
||||
p.drawOn(canvas, 0, - h)
|
||||
elif o.get('verticalalign', 'top') == 'middle':
|
||||
p.drawOn(canvas, 0, (-height - h) / 2)
|
||||
elif o.get('verticalalign', 'top') == 'bottom':
|
||||
p.drawOn(canvas, 0, -height)
|
||||
canvas.restoreState()
|
||||
|
||||
def _draw_textarea(self, canvas: Canvas, op: OrderPosition, order: Order, o: dict):
|
||||
p, ad, lineheight = self._text_paragraph(op, order, o, legacy_lineheight=True)
|
||||
w, h = p.wrapOn(canvas, float(o['width']) * mm, 1000 * mm)
|
||||
# p_size = p.wrap(float(o['width']) * mm, 1000 * mm)
|
||||
canvas.saveState()
|
||||
@@ -1051,6 +1088,8 @@ class Renderer:
|
||||
self._draw_barcodearea(canvas, op, order, o)
|
||||
elif o['type'] == "imagearea":
|
||||
self._draw_imagearea(canvas, op, order, o)
|
||||
elif o['type'] == "textcontainer":
|
||||
self._draw_textcontainer(canvas, op, order, o)
|
||||
elif o['type'] == "textarea":
|
||||
self._draw_textarea(canvas, op, order, o)
|
||||
elif o['type'] == "poweredby":
|
||||
|
||||
@@ -1154,7 +1154,7 @@ def perform_checkin(op: OrderPosition, clist: CheckinList, given_answers: dict,
|
||||
)
|
||||
|
||||
|
||||
@receiver(order_placed, dispatch_uid="autocheckin_order_placed")
|
||||
@receiver(order_placed, dispatch_uid="legacy_autocheckin_order_placed")
|
||||
def order_placed(sender, **kwargs):
|
||||
order = kwargs['order']
|
||||
event = sender
|
||||
@@ -1171,7 +1171,7 @@ def order_placed(sender, **kwargs):
|
||||
checkin_created.send(event, checkin=ci)
|
||||
|
||||
|
||||
@receiver(periodic_task, dispatch_uid="autocheckin_exit_all")
|
||||
@receiver(periodic_task, dispatch_uid="autocheckout_exit_all")
|
||||
@scopes_disabled()
|
||||
def process_exit_all(sender, **kwargs):
|
||||
qs = CheckinList.objects.filter(
|
||||
|
||||
@@ -58,6 +58,7 @@ from django.core.mail import (
|
||||
from django.core.mail.message import SafeMIMEText
|
||||
from django.db import transaction
|
||||
from django.template.loader import get_template
|
||||
from django.utils.html import escape
|
||||
from django.utils.timezone import now, override
|
||||
from django.utils.translation import gettext as _, pgettext
|
||||
from django_scopes import scope, scopes_disabled
|
||||
@@ -109,6 +110,22 @@ def clean_sender_name(sender_name: str) -> str:
|
||||
return sender_name
|
||||
|
||||
|
||||
def prefix_subject(settings_holder, subject, highlight=False):
|
||||
prefix = settings_holder.settings.get('mail_prefix')
|
||||
if prefix and prefix.startswith('[') and prefix.endswith(']'):
|
||||
prefix = prefix[1:-1]
|
||||
if prefix:
|
||||
prefix = f"[{prefix}]"
|
||||
if highlight:
|
||||
prefix = '<span class="placeholder" title="{}">{}</span>'.format(
|
||||
_('This prefix has been set in your event or organizer settings.'),
|
||||
escape(prefix)
|
||||
)
|
||||
|
||||
subject = f"{prefix} {subject}"
|
||||
return subject
|
||||
|
||||
|
||||
def mail(email: Union[str, Sequence[str]], subject: str, template: Union[str, LazyI18nString],
|
||||
context: Dict[str, Any] = None, event: Event = None, locale: str = None, order: Order = None,
|
||||
position: OrderPosition = None, *, headers: dict = None, sender: str = None, organizer: Organizer = None,
|
||||
@@ -240,11 +257,7 @@ def mail(email: Union[str, Sequence[str]], subject: str, template: Union[str, La
|
||||
and settings_holder.settings.contact_mail and not headers.get('Reply-To'):
|
||||
headers['Reply-To'] = settings_holder.settings.contact_mail
|
||||
|
||||
prefix = settings_holder.settings.get('mail_prefix')
|
||||
if prefix and prefix.startswith('[') and prefix.endswith(']'):
|
||||
prefix = prefix[1:-1]
|
||||
if prefix:
|
||||
subject = "[%s] %s" % (prefix, subject)
|
||||
subject = prefix_subject(settings_holder, subject)
|
||||
|
||||
body_plain += "\r\n\r\n-- \r\n"
|
||||
|
||||
|
||||
@@ -3152,7 +3152,7 @@ def signal_listener_issue_memberships(sender: Event, order: Order, **kwargs):
|
||||
if order.status != Order.STATUS_PAID or not order.customer:
|
||||
return
|
||||
for p in order.positions.all():
|
||||
if p.item.grant_membership_type_id:
|
||||
if p.item.grant_membership_type_id and not p.granted_memberships.exists():
|
||||
create_membership(order.customer, p)
|
||||
|
||||
|
||||
|
||||
@@ -3363,7 +3363,9 @@ Your {organizer} team""")) # noqa: W291
|
||||
},
|
||||
'seating_allow_blocked_seats_for_channel': {
|
||||
'default': [],
|
||||
'type': list
|
||||
'type': list,
|
||||
'serializer_class': serializers.ListField,
|
||||
'serializer_kwargs': lambda: dict(child=serializers.CharField()),
|
||||
},
|
||||
'seating_distance_within_row': {
|
||||
'default': 'False',
|
||||
@@ -3801,6 +3803,16 @@ def validate_event_settings(event, settings_dict):
|
||||
'payment_term_last': _('The last payment date cannot be before the end of presale.')
|
||||
})
|
||||
|
||||
if settings_dict.get('seating_allow_blocked_seats_for_channel'):
|
||||
allowed_channels = set(event.organizer.sales_channels.values_list("identifier", flat=True))
|
||||
for channel in settings_dict['seating_allow_blocked_seats_for_channel']:
|
||||
if channel not in allowed_channels:
|
||||
raise ValidationError({
|
||||
'seating_allow_blocked_seats_for_channel': _('The value "{identifier}" is not a valid sales channel.').format(
|
||||
identifier=channel
|
||||
)
|
||||
})
|
||||
|
||||
if isinstance(event, Event):
|
||||
validate_event_settings.send(sender=event, settings_dict=settings_dict)
|
||||
|
||||
|
||||
@@ -48,6 +48,7 @@ from django.utils.formats import date_format, localize
|
||||
from django.utils.functional import cached_property
|
||||
from django.utils.timezone import get_current_timezone, make_aware, now
|
||||
from django.utils.translation import gettext, gettext_lazy as _, pgettext_lazy
|
||||
from django_countries.fields import CountryField
|
||||
from django_scopes.forms import SafeModelChoiceField
|
||||
|
||||
from pretix.base.forms.widgets import (
|
||||
@@ -60,6 +61,7 @@ from pretix.base.models import (
|
||||
SubEvent, SubEventMetaValue, Team, TeamAPIToken, TeamInvite, Voucher,
|
||||
)
|
||||
from pretix.base.signals import register_payment_providers
|
||||
from pretix.control.forms import SplitDateTimeField
|
||||
from pretix.control.forms.widgets import Select2, Select2ItemVarQuota
|
||||
from pretix.control.signals import order_search_filter_q
|
||||
from pretix.helpers.countries import CachedCountries
|
||||
@@ -67,7 +69,7 @@ from pretix.helpers.database import (
|
||||
get_deterministic_ordering, rolledback_transaction,
|
||||
)
|
||||
from pretix.helpers.dicts import move_to_end
|
||||
from pretix.helpers.i18n import i18ncomp
|
||||
from pretix.helpers.i18n import get_format_without_seconds, i18ncomp
|
||||
|
||||
PAYMENT_PROVIDERS = []
|
||||
|
||||
@@ -687,11 +689,71 @@ class EventOrderExpertFilterForm(EventOrderFilterForm):
|
||||
)
|
||||
self.fields['quota'].widget.choices = self.fields['quota'].choices
|
||||
for q in self.event.questions.all():
|
||||
self.fields['question_{}'.format(q.pk)] = forms.CharField(
|
||||
label=q.question,
|
||||
required=False,
|
||||
help_text=_('Exact matches only')
|
||||
)
|
||||
kwargs = {
|
||||
"label": q.question,
|
||||
"required": False,
|
||||
}
|
||||
fname = 'question_{}'.format(q.pk)
|
||||
if q.type == Question.TYPE_NUMBER:
|
||||
self.fields[fname] = forms.DecimalField(
|
||||
help_text=_('Exact matches only'),
|
||||
**kwargs,
|
||||
)
|
||||
elif q.type == Question.TYPE_BOOLEAN:
|
||||
self.fields[fname] = forms.ChoiceField(
|
||||
choices=(
|
||||
("", ""),
|
||||
("True", _("Yes")),
|
||||
("False", _("No")),
|
||||
),
|
||||
**kwargs,
|
||||
)
|
||||
elif q.type in (Question.TYPE_CHOICE, Question.TYPE_CHOICE_MULTIPLE):
|
||||
self.fields[fname] = forms.ModelChoiceField(
|
||||
queryset=q.options,
|
||||
widget=forms.Select,
|
||||
to_field_name='identifier',
|
||||
empty_label='',
|
||||
**kwargs,
|
||||
)
|
||||
elif q.type == Question.TYPE_COUNTRYCODE:
|
||||
self.fields[fname] = CountryField(
|
||||
countries=CachedCountries,
|
||||
blank=True, null=True, blank_label=' ',
|
||||
).formfield(
|
||||
**kwargs,
|
||||
widget=forms.Select,
|
||||
empty_label=' ',
|
||||
)
|
||||
elif q.type == Question.TYPE_DATE:
|
||||
self.fields[fname] = forms.DateField(
|
||||
widget=DatePickerWidget(),
|
||||
help_text=_('Exact matches only'),
|
||||
**kwargs,
|
||||
)
|
||||
elif q.type == Question.TYPE_TIME:
|
||||
self.fields[fname] = forms.TimeField(
|
||||
widget=TimePickerWidget(time_format=get_format_without_seconds('TIME_INPUT_FORMATS')),
|
||||
help_text=_('Exact matches only'),
|
||||
**kwargs,
|
||||
)
|
||||
elif q.type == Question.TYPE_DATETIME:
|
||||
self.fields[fname] = SplitDateTimeField(
|
||||
widget=SplitDateTimePickerWidget(
|
||||
time_format=get_format_without_seconds('TIME_INPUT_FORMATS'),
|
||||
min_date=q.valid_datetime_min,
|
||||
max_date=q.valid_datetime_max
|
||||
),
|
||||
help_text=_('Exact matches only'),
|
||||
**kwargs,
|
||||
)
|
||||
elif q.type == Question.TYPE_FILE:
|
||||
continue
|
||||
else:
|
||||
self.fields[fname] = forms.CharField(
|
||||
help_text=_('Exact matches only'),
|
||||
**kwargs,
|
||||
)
|
||||
|
||||
def filter_qs(self, qs):
|
||||
fdata = self.cleaned_data
|
||||
@@ -787,11 +849,24 @@ class EventOrderExpertFilterForm(EventOrderFilterForm):
|
||||
).distinct()
|
||||
for q in self.event.questions.all():
|
||||
if fdata.get(f'question_{q.pk}'):
|
||||
answers = QuestionAnswer.objects.filter(
|
||||
question_id=q.pk,
|
||||
orderposition__order_id=OuterRef('pk'),
|
||||
answer__iexact=fdata.get(f'question_{q.pk}')
|
||||
)
|
||||
if q.type == Question.TYPE_BOOLEAN:
|
||||
answers = QuestionAnswer.objects.filter(
|
||||
question_id=q.pk,
|
||||
orderposition__order_id=OuterRef('pk'),
|
||||
answer__exact=fdata.get(f'question_{q.pk}')
|
||||
)
|
||||
elif q.type in (Question.TYPE_CHOICE, Question.TYPE_CHOICE_MULTIPLE):
|
||||
answers = QuestionAnswer.objects.filter(
|
||||
question_id=q.pk,
|
||||
orderposition__order_id=OuterRef('pk'),
|
||||
options=fdata.get(f'question_{q.pk}')
|
||||
)
|
||||
else:
|
||||
answers = QuestionAnswer.objects.filter(
|
||||
question_id=q.pk,
|
||||
orderposition__order_id=OuterRef('pk'),
|
||||
answer__iexact=fdata.get(f'question_{q.pk}')
|
||||
)
|
||||
qs = qs.annotate(**{f'q_{q.pk}': Exists(answers)}).filter(**{f'q_{q.pk}': True})
|
||||
|
||||
return qs
|
||||
@@ -2577,6 +2652,9 @@ class DeviceFilterForm(FilterForm):
|
||||
if fdata.get('gate'):
|
||||
qs = qs.filter(gate=fdata['gate'])
|
||||
|
||||
if fdata.get('software_brand'):
|
||||
qs = qs.filter(software_brand=fdata['software_brand'])
|
||||
|
||||
if fdata.get('state') == 'active':
|
||||
qs = qs.filter(revoked=False)
|
||||
elif fdata.get('state') == 'revoked':
|
||||
|
||||
@@ -49,6 +49,7 @@ from pretix.base.forms import (
|
||||
I18nModelForm, MarkdownTextarea, PlaceholderValidator,
|
||||
)
|
||||
from pretix.base.forms.widgets import format_placeholders_help_text
|
||||
from pretix.base.i18n import language
|
||||
from pretix.base.models import Item, Voucher
|
||||
from pretix.control.forms import SplitDateTimeField, SplitDateTimePickerWidget
|
||||
from pretix.control.forms.widgets import Select2, Select2ItemVarQuota
|
||||
@@ -289,8 +290,9 @@ class VoucherBulkForm(VoucherForm):
|
||||
)
|
||||
}),
|
||||
required=False,
|
||||
help_text=_('You can either supply a list of email addresses with one email address per line, or a CSV file with a title column '
|
||||
'and one or more of the columns "email", "number", "name", or "tag".')
|
||||
help_text=_('You can either supply a list of email addresses with one email address per line, or the contents '
|
||||
'of a CSV file with a title column and one or more of the columns "email", "number", "name", '
|
||||
'or "tag".')
|
||||
)
|
||||
Recipient = namedtuple('Recipient', 'email number name tag')
|
||||
|
||||
@@ -332,6 +334,11 @@ class VoucherBulkForm(VoucherForm):
|
||||
super().__init__(*args, **kwargs)
|
||||
self._set_field_placeholders('send_subject', ['event', 'name'])
|
||||
self._set_field_placeholders('send_message', ['event', 'voucher_list', 'name'])
|
||||
|
||||
with language(self.instance.event.settings.locale, self.instance.event.settings.region):
|
||||
for f in ("send_subject", "send_message"):
|
||||
self.fields[f].initial = str(self.fields[f].initial)
|
||||
|
||||
if 'seat' in self.fields:
|
||||
self.fields['seats'] = forms.CharField(
|
||||
label=_("Specific seat IDs"),
|
||||
|
||||
@@ -372,6 +372,19 @@
|
||||
</div>
|
||||
{% bootstrap_field sform.waiting_list_enabled layout="control" %}
|
||||
{% bootstrap_field sform.waiting_list_auto layout="control" %}
|
||||
<div class="form-group">
|
||||
<label class="control-label col-md-3">
|
||||
{% trans "Waiting customers" %}
|
||||
</label>
|
||||
<div class="col-md-9 static-form-row">
|
||||
<p>
|
||||
<a href="{% url "control:event.orders.waitinglist" event=request.event.slug organizer=request.organizer.slug %}#tab-0-1-open"
|
||||
target="_blank">
|
||||
{% trans "Manage waiting list" %}
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{% bootstrap_field sform.waiting_list_hours layout="control" %}
|
||||
{% bootstrap_field sform.waiting_list_auto_disable layout="control" %}
|
||||
{% bootstrap_field sform.waiting_list_names_asked_required layout="control" %}
|
||||
|
||||
@@ -151,6 +151,12 @@
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
{% bootstrap_field position.form.itemvar layout='inline' %}
|
||||
{% if position.granted_memberships.all %}
|
||||
<span class="text-muted">
|
||||
<span class="fa fa-warning text-warning" aria-hidden="true"></span>
|
||||
{% trans "The sale of this position created a membership. Changing the product here will not affect the membership. Memberships can be managed in the customer account." %}
|
||||
</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -254,6 +260,12 @@
|
||||
{% trans "–" %}
|
||||
</div>
|
||||
{% bootstrap_field position.form.valid_until layout='inline' %}
|
||||
{% if position.granted_memberships.all %}
|
||||
<span class="text-muted">
|
||||
<span class="fa fa-warning text-warning" aria-hidden="true"></span>
|
||||
{% trans "The sale of this position created a membership. Changing the validity of the ticket here will not affect the membership. Memberships can be managed in the customer account." %}
|
||||
</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -177,7 +177,7 @@
|
||||
{% if name %}
|
||||
<div class="row control-group pdf-info">
|
||||
<div class="col-sm-12">
|
||||
<label>{% trans "Layout name" %}</label><br>
|
||||
<label for="pdf-info-name">{% trans "Layout name" %}</label><br>
|
||||
<input type="text" id="pdf-info-name" class="input-block-level form-control" name="name" value="{{ name }}">
|
||||
</div>
|
||||
</div>
|
||||
@@ -185,11 +185,11 @@
|
||||
<div class="row control-group pdf-info">
|
||||
<hr/>
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Width (mm)" %}</label><br>
|
||||
<label for="pdf-info-width">{% trans "Width (mm)" %}</label><br>
|
||||
<input type="number" id="pdf-info-width" class="input-block-level form-control">
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Height (mm)" %}</label><br>
|
||||
<label for="pdf-info-height">{% trans "Height (mm)" %}</label><br>
|
||||
<input type="number" id="pdf-info-height" class="input-block-level form-control">
|
||||
</div>
|
||||
</div>
|
||||
@@ -227,7 +227,7 @@
|
||||
<div class="row control-group pdf-info">
|
||||
<hr/>
|
||||
<div class="col-sm-12">
|
||||
<label>{% trans "Preferred language" %}</label><br>
|
||||
<label for="pdf-info-locale">{% trans "Preferred language" %}</label><br>
|
||||
<select class="form-control" id="pdf-info-locale">
|
||||
<option value="">{% trans "Order locale" %}</option>
|
||||
{% for l in locales %}
|
||||
@@ -238,7 +238,7 @@
|
||||
</div>
|
||||
<div class="row control-group poweredby">
|
||||
<div class="col-sm-12">
|
||||
<label>{% trans "Style" %}</label><br>
|
||||
<label for="toolbox-poweredby-style">{% trans "Style" %}</label><br>
|
||||
<select class="input-block-level form-control" id="toolbox-poweredby-style">
|
||||
<option value="dark">{% trans "Dark" %}</option>
|
||||
<option value="white">{% trans "Light" %}</option>
|
||||
@@ -247,7 +247,7 @@
|
||||
</div>
|
||||
<div class="row control-group imagecontent">
|
||||
<div class="col-sm-12">
|
||||
<label>{% trans "Image content" %}</label><br>
|
||||
<label for="toolbox-imagecontent">{% trans "Image content" %}</label><br>
|
||||
<select class="input-block-level form-control" id="toolbox-imagecontent">
|
||||
<option value="">{% trans "Empty" %}</option>
|
||||
{% for varname, var in images.items %}
|
||||
@@ -258,7 +258,7 @@
|
||||
</div>
|
||||
<div class="row control-group text textcontent">
|
||||
<div class="col-sm-12">
|
||||
<label>{% trans "Content" %}</label><br>
|
||||
<label for="toolbox-content">{% trans "Content" %}</label><br>
|
||||
<select class="input-block-level form-control" id="toolbox-content">
|
||||
{% for varname, var in variables.items %}
|
||||
{% if not var.hidden %}
|
||||
@@ -293,31 +293,31 @@
|
||||
<div class="row control-group position">
|
||||
<hr/>
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "x (mm)" %}</label><br>
|
||||
<label for="toolbox-position-x">{% trans "x (mm)" %}</label><br>
|
||||
<input type="number" value="13" class="input-block-level form-control" step="0.01"
|
||||
id="toolbox-position-x">
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "y (mm)" %}</label><br>
|
||||
<label for="toolbox-position-y">{% trans "y (mm)" %}</label><br>
|
||||
<input type="number" value="13" class="input-block-level form-control" step="0.01"
|
||||
id="toolbox-position-y">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group rectsize">
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Width (mm)" %}</label><br>
|
||||
<label for="toolbox-width">{% trans "Width (mm)" %}</label><br>
|
||||
<input type="number" value="13" class="input-block-level form-control" step="0.01"
|
||||
id="toolbox-width">
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Height (mm)" %}</label><br>
|
||||
<label for="toolbox-height">{% trans "Height (mm)" %}</label><br>
|
||||
<input type="number" value="13" class="input-block-level form-control" step="0.01"
|
||||
id="toolbox-height">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group squaresize poweredby">
|
||||
<div class="col-sm-12">
|
||||
<label>{% trans "Size (mm)" %}</label><br>
|
||||
<label for="toolbox-squaresize">{% trans "Size (mm)" %}</label><br>
|
||||
<input type="number" value="13" class="input-block-level form-control" step="0.01"
|
||||
id="toolbox-squaresize">
|
||||
</div>
|
||||
@@ -335,13 +335,13 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group text">
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Width (mm)" %}</label><br>
|
||||
<div class="col-sm-6 textarea">
|
||||
<label for="toolbox-textwidth">{% trans "Width (mm)" %}</label><br>
|
||||
<input type="number" value="13" class="input-block-level form-control" step="0.01"
|
||||
id="toolbox-textwidth">
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Rotation (°)" %}</label><br>
|
||||
<label for="toolbox-textrotation">{% trans "Rotation (°)" %}</label><br>
|
||||
<input type="number" value="0" class="input-block-level form-control" step="0.1"
|
||||
id="toolbox-textrotation">
|
||||
</div>
|
||||
@@ -349,7 +349,7 @@
|
||||
<div class="row control-group text">
|
||||
<hr/>
|
||||
<div class="col-sm-12">
|
||||
<label>{% trans "Font" %}</label><br>
|
||||
<label for="toolbox-fontfamily">{% trans "Font" %}</label><br>
|
||||
<select class="input-block-level form-control" id="toolbox-fontfamily">
|
||||
<option>Open Sans</option>
|
||||
{% for family in fonts.keys %}
|
||||
@@ -360,43 +360,50 @@
|
||||
</div>
|
||||
<div class="row control-group text">
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Font size (pt)" %}</label><br>
|
||||
<label for="toolbox-fontsize">{% trans "Font size (pt)" %}</label><br>
|
||||
<input type="number" value="13" class="input-block-level form-control" step="0.1"
|
||||
id="toolbox-fontsize">
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Line height" %}</label><br>
|
||||
<label for="toolbox-lineheight">{% trans "Line height" %}</label><br>
|
||||
<input type="number" value="1" class="input-block-level form-control" step="0.1"
|
||||
id="toolbox-lineheight">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group text">
|
||||
<div class="col-sm-6">
|
||||
<label>{% trans "Text color" %}</label><br>
|
||||
<input type="text" value="#000000" class="input-block-level form-control colorpickerfield"
|
||||
id="toolbox-col">
|
||||
<label for="toolbox-col">{% trans "Text color" %}</label><br>
|
||||
<div class="input-group">
|
||||
<input type="text" value="#000000" class="input-block-level form-control colorpickerfield"
|
||||
id="toolbox-col">
|
||||
<span class="input-group-addon contrast-icon">
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<label> </label><br>
|
||||
<div class="btn-group btn-group-justified" role="group">
|
||||
<div class="btn-group" role="group">
|
||||
<div class="btn-group text" role="group">
|
||||
<button type="button" class="btn btn-default toggling" data-action="bold">
|
||||
<span class="fa fa-bold"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<div class="btn-group text" role="group">
|
||||
<button type="button" class="btn btn-default toggling" data-action="italic">
|
||||
<span class="fa fa-italic"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<div class="btn-group textarea" role="group">
|
||||
<button type="button" class="btn btn-default toggling" data-action="downward"
|
||||
data-toggle="tooltip" title="{% trans "Flow multiple lines downward from specified position" %}">
|
||||
data-toggle="tooltip" title="{% trans "Flow multiple lines downward from specified position" %}">
|
||||
<span class="fa fa-caret-square-o-down"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<label> </label><br>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group text">
|
||||
<div class="col-sm-6">
|
||||
<div class="btn-group btn-group-justified" id="toolbox-align">
|
||||
<div class="btn-group" role="group">
|
||||
<button type="button" class="btn btn-default option toggling" data-action="left">
|
||||
@@ -415,6 +422,45 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
<div class="textcontainer">
|
||||
<div class="btn-group btn-group-justified" id="toolbox-verticalalign">
|
||||
<div class="btn-group" role="group">
|
||||
<button type="button" class="btn btn-default option toggling" data-action="top">
|
||||
<span class="fa fa-toggle-down"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<button type="button" class="btn btn-default option toggling" data-action="middle">
|
||||
<span class="fa fa-sort"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group" role="group">
|
||||
<button type="button" class="btn btn-default option toggling" data-action="bottom">
|
||||
<span class="fa fa-toggle-up"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group textcontainer">
|
||||
<div class="col-sm-6">
|
||||
<div class="btn-group btn-group-justified">
|
||||
<div class="btn-group textcontainer" role="group">
|
||||
<button type="button" class="btn btn-default toggling" data-action="autoresize"
|
||||
data-toggle="tooltip" title="{% trans "Automatically reduce font size to fit content" %}">
|
||||
<span class="fa fa-text-height"></span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="btn-group textcontainer" role="group">
|
||||
<button type="button" class="btn btn-default toggling" data-action="splitlongwords"
|
||||
data-toggle="tooltip" title="{% trans "Allow long words to be split (preview is not accurate)" %}">
|
||||
<span class="fa fa-scissors fa-rotate-90"></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -423,9 +469,13 @@
|
||||
{% trans "Add a new object" %}
|
||||
</div>
|
||||
<div class="panel-body add-buttons">
|
||||
<button class="btn btn-default btn-block" id="editor-add-textcontainer" disabled>
|
||||
<span class="fa fa-font"></span>
|
||||
{% trans "Text box" %}
|
||||
</button>
|
||||
<button class="btn btn-default btn-block" id="editor-add-text" disabled>
|
||||
<span class="fa fa-font"></span>
|
||||
{% trans "Text" %}
|
||||
{% trans "Text (deprecated)" %}
|
||||
</button>
|
||||
<button class="btn btn-default btn-block" id="editor-add-qrcode" data-content="secret" disabled>
|
||||
<span class="fa fa-qrcode"></span>
|
||||
@@ -456,7 +506,6 @@
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form method="post" action="" id="preview-form" target="_blank">
|
||||
<div class="form-group submit-group">
|
||||
{% csrf_token %}
|
||||
@@ -472,6 +521,13 @@
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
<p> </p>
|
||||
<div class="alert alert-info" id="version-notice">
|
||||
{% blocktrans trimmed with print_version="2.18" scan_version="1.22" %}
|
||||
This layout uses new features. If you print from your device, make sure you use pretixPRINT version
|
||||
{{ print_version }} (or newer) or pretixSCAN Desktop version {{ scan_version }} (or newer).
|
||||
{% endblocktrans %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/plain" id="schema-url">{% static "schema/pdf-layout.schema.json" %}</script>
|
||||
|
||||
@@ -5,7 +5,13 @@
|
||||
{% load urlreplace %}
|
||||
{% block title %}{% trans "Waiting list" %}{% endblock %}
|
||||
{% block content %}
|
||||
<h1>{% trans "Waiting list" %}</h1>
|
||||
<h1>
|
||||
{% trans "Waiting list" %}
|
||||
<a href="{% url "control:event.settings" event=request.event.slug organizer=request.organizer.slug %}#waiting-list-open" class="btn btn-default">
|
||||
<span class="fa fa-cog"></span>
|
||||
{% trans "Settings" %}
|
||||
</a>
|
||||
</h1>
|
||||
{% if not request.event.settings.waiting_list_enabled %}
|
||||
<div class="alert alert-danger">
|
||||
{% trans "The waiting list is disabled, so if the event is sold out, people cannot add themselves to this list. If you want to enable it, go to the event settings." %}
|
||||
|
||||
@@ -62,6 +62,7 @@ from django.http import (
|
||||
from django.shortcuts import get_object_or_404, redirect
|
||||
from django.urls import reverse
|
||||
from django.utils.functional import cached_property
|
||||
from django.utils.html import escape
|
||||
from django.utils.http import url_has_allowed_host_and_scheme
|
||||
from django.utils.timezone import now
|
||||
from django.utils.translation import gettext, gettext_lazy as _, gettext_noop
|
||||
@@ -98,6 +99,7 @@ from ...base.i18n import language
|
||||
from ...base.models.items import (
|
||||
Item, ItemCategory, ItemMetaProperty, Question, Quota,
|
||||
)
|
||||
from ...base.services.mail import prefix_subject
|
||||
from ...base.settings import LazyI18nStringList
|
||||
from ...helpers.compat import CompatDeleteView
|
||||
from ...helpers.format import format_map
|
||||
@@ -726,7 +728,7 @@ class MailSettingsPreview(EventPermissionRequiredMixin, View):
|
||||
else:
|
||||
ctx[p.identifier] = '<span class="placeholder" title="{}">{}</span>'.format(
|
||||
_('This value will be replaced based on dynamic parameters.'),
|
||||
s
|
||||
escape(s)
|
||||
)
|
||||
return ctx
|
||||
|
||||
@@ -746,9 +748,9 @@ class MailSettingsPreview(EventPermissionRequiredMixin, View):
|
||||
with language(self.supported_locale[idx], self.request.event.settings.region):
|
||||
try:
|
||||
if k.startswith('mail_subject_'):
|
||||
msgs[self.supported_locale[idx]] = format_map(
|
||||
msgs[self.supported_locale[idx]] = prefix_subject(self.request.event, format_map(
|
||||
bleach.clean(v), self.placeholders(preview_item), raise_on_missing=True
|
||||
)
|
||||
), highlight=True)
|
||||
else:
|
||||
msgs[self.supported_locale[idx]] = markdown_compile_email(
|
||||
format_map(v, self.placeholders(preview_item), raise_on_missing=True)
|
||||
@@ -776,7 +778,7 @@ class MailSettingsRendererPreview(MailSettingsPreview):
|
||||
def placeholders(self, item):
|
||||
ctx = {}
|
||||
for p in get_available_placeholders(self.request.event, MailSettingsForm.base_context[item]).values():
|
||||
ctx[p.identifier] = str(p.render_sample(self.request.event))
|
||||
ctx[p.identifier] = escape(str(p.render_sample(self.request.event)))
|
||||
return ctx
|
||||
|
||||
def get(self, request, *args, **kwargs):
|
||||
|
||||
@@ -62,8 +62,9 @@ from django.urls import reverse
|
||||
from django.utils import formats
|
||||
from django.utils.formats import date_format, get_format
|
||||
from django.utils.functional import cached_property
|
||||
from django.utils.html import conditional_escape
|
||||
from django.utils.html import conditional_escape, escape
|
||||
from django.utils.http import url_has_allowed_host_and_scheme
|
||||
from django.utils.safestring import mark_safe
|
||||
from django.utils.timezone import make_aware, now
|
||||
from django.utils.translation import gettext, gettext_lazy as _, ngettext
|
||||
from django.views.generic import (
|
||||
@@ -94,7 +95,9 @@ from pretix.base.services.invoices import (
|
||||
invoice_qualified, regenerate_invoice,
|
||||
)
|
||||
from pretix.base.services.locking import LockTimeoutException
|
||||
from pretix.base.services.mail import SendMailException, render_mail
|
||||
from pretix.base.services.mail import (
|
||||
SendMailException, prefix_subject, render_mail,
|
||||
)
|
||||
from pretix.base.services.orders import (
|
||||
OrderChangeManager, OrderError, approve_order, cancel_order, deny_order,
|
||||
extend_order, mark_order_expired, mark_order_refunded,
|
||||
@@ -1900,7 +1903,7 @@ class OrderChange(OrderView):
|
||||
positions = list(self.order.positions.select_related(
|
||||
'item', 'item__tax_rule', 'used_membership', 'used_membership__membership_type', 'tax_rule',
|
||||
'seat', 'subevent',
|
||||
))
|
||||
).prefetch_related('granted_memberships'))
|
||||
for p in positions:
|
||||
p.form = OrderPositionChangeForm(prefix='op-{}'.format(p.pk), instance=p, items=self.items,
|
||||
initial={'seat': p.seat.seat_guid if p.seat else None},
|
||||
@@ -2304,7 +2307,9 @@ class OrderSendMail(EventPermissionRequiredMixin, OrderViewMixin, FormView):
|
||||
email_content = render_mail(email_template, email_context)
|
||||
if self.request.POST.get('action') == 'preview':
|
||||
self.preview_output = {
|
||||
'subject': _('Subject: {subject}').format(subject=email_subject),
|
||||
'subject': mark_safe(_('Subject: {subject}').format(
|
||||
subject=prefix_subject(order.event, escape(email_subject), highlight=True)
|
||||
)),
|
||||
'html': markdown_compile_email(email_content)
|
||||
}
|
||||
return self.get(self.request, *self.args, **self.kwargs)
|
||||
@@ -2369,7 +2374,9 @@ class OrderPositionSendMail(OrderSendMail):
|
||||
email_content = render_mail(email_template, email_context)
|
||||
if self.request.POST.get('action') == 'preview':
|
||||
self.preview_output = {
|
||||
'subject': _('Subject: {subject}').format(subject=email_subject),
|
||||
'subject': mark_safe(_('Subject: {subject}').format(
|
||||
subject=prefix_subject(position.order.event, escape(email_subject), highlight=True))
|
||||
),
|
||||
'html': markdown_compile_email(email_content)
|
||||
}
|
||||
return self.get(self.request, *self.args, **self.kwargs)
|
||||
|
||||
@@ -90,7 +90,7 @@ from pretix.base.models.orders import CancellationRequest
|
||||
from pretix.base.models.organizer import SalesChannel, TeamAPIToken
|
||||
from pretix.base.payment import PaymentException
|
||||
from pretix.base.services.export import multiexport, scheduled_organizer_export
|
||||
from pretix.base.services.mail import SendMailException, mail
|
||||
from pretix.base.services.mail import SendMailException, mail, prefix_subject
|
||||
from pretix.base.signals import register_multievent_data_exporters
|
||||
from pretix.base.templatetags.rich_text import markdown_compile_email
|
||||
from pretix.base.views.tasks import AsyncAction
|
||||
@@ -351,8 +351,11 @@ class MailSettingsPreview(OrganizerPermissionRequiredMixin, View):
|
||||
if idx in self.supported_locale:
|
||||
with language(self.supported_locale[idx], self.request.organizer.settings.region):
|
||||
if k.startswith('mail_subject_'):
|
||||
msgs[self.supported_locale[idx]] = format_map(bleach.clean(v),
|
||||
self.placeholders(preview_item))
|
||||
msgs[self.supported_locale[idx]] = prefix_subject(
|
||||
self.request.organizer,
|
||||
format_map(bleach.clean(v), self.placeholders(preview_item)),
|
||||
highlight=True,
|
||||
)
|
||||
else:
|
||||
msgs[self.supported_locale[idx]] = markdown_compile_email(
|
||||
format_map(v, self.placeholders(preview_item))
|
||||
|
||||
@@ -50,7 +50,7 @@ from django.http import (
|
||||
from django.shortcuts import redirect, render
|
||||
from django.urls import resolve, reverse
|
||||
from django.utils.functional import cached_property
|
||||
from django.utils.html import format_html
|
||||
from django.utils.html import escape, format_html
|
||||
from django.utils.safestring import mark_safe
|
||||
from django.utils.timezone import now
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
@@ -64,6 +64,7 @@ from pretix.base.models import (
|
||||
CartPosition, LogEntry, Voucher, WaitingListEntry,
|
||||
)
|
||||
from pretix.base.models.vouchers import generate_codes
|
||||
from pretix.base.services.mail import prefix_subject
|
||||
from pretix.base.services.vouchers import vouchers_send
|
||||
from pretix.base.templatetags.rich_text import markdown_compile_email
|
||||
from pretix.base.views.tasks import AsyncFormView
|
||||
@@ -562,7 +563,7 @@ class VoucherBulkMailPreview(EventPermissionRequiredMixin, View):
|
||||
else:
|
||||
ctx[p.identifier] = '<span class="placeholder" title="{}">{}</span>'.format(
|
||||
_('This value will be replaced based on dynamic parameters.'),
|
||||
s
|
||||
escape(s)
|
||||
)
|
||||
return self.SafeDict(ctx)
|
||||
|
||||
@@ -572,7 +573,11 @@ class VoucherBulkMailPreview(EventPermissionRequiredMixin, View):
|
||||
return HttpResponseBadRequest(_('invalid item'))
|
||||
msgs = {}
|
||||
if "subject" in preview_item:
|
||||
msgs["all"] = format_map(bleach.clean(request.POST.get(preview_item, "")), self.placeholders(preview_item))
|
||||
msgs["all"] = prefix_subject(
|
||||
self.request.event,
|
||||
format_map(bleach.clean(request.POST.get(preview_item, "")), self.placeholders(preview_item)),
|
||||
highlight=True
|
||||
)
|
||||
else:
|
||||
msgs["all"] = markdown_compile_email(
|
||||
format_map(request.POST.get(preview_item), self.placeholders(preview_item))
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -17,119 +17,119 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -379,22 +379,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1591,6 +1591,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2626,6 +2628,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3726,10 +3731,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4737,6 +4741,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5117,6 +5124,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8783,9 +8791,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12107,6 +12115,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15037,6 +15049,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15385,6 +15399,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15435,6 +15450,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15778,6 +15794,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15786,6 +15803,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16735,8 +16753,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22561,8 +22579,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24098,17 +24118,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24119,6 +24130,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26388,10 +26523,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26463,14 +26594,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-05-08 07:07+0000\n"
|
||||
"Last-Translator: AbdelatifAitBara <aitbaraabdelatif@outlook.com>\n"
|
||||
"Language-Team: Arabic <https://translate.pretix.eu/projects/pretix/pretix/ar/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.4.3\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "الإنجليزية"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "الألمانية"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "الألمانية (غير رسمي)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "العربية"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "الصينية (المبسطة)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "التشيكية"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "دانماركي"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "هولندي"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "الهولندية (غير رسمي)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "الفرنسية"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "الفنلندية"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "اليونانية"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "الأندونيسية"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "الإيطالية"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "لاتفيفية"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "البولندية"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "البرتغالية (البرتغال)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "البرتغالية (البرازيل)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "الروسية"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "الأسبانية"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "التركية"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -410,22 +410,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr "تم تفويض التطبيق \"{application_name}\" للوصول إلى حسابك."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "لا يمكنك توليد فاتورة لهذا الطلب."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "توجد فاتورة مصدرة لهذا الطلب مسبقا."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "حدث خطأ أثناء إرسال البريد. الرجاء المحاولة مرة أخرى في وقت لاحق."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "أحد المنتجات المختارة غير متوفر في البلد المحدد."
|
||||
@@ -1701,6 +1701,8 @@ msgstr "نشط"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "قنوات البيع"
|
||||
|
||||
@@ -2797,6 +2799,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3970,15 +3975,10 @@ msgstr "قنوات البيع لتسجيل الدخول تلقائيا"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"سيتم وضع علامة على جميع العناصر الموجودة في قائمة التسجيل هذه تلقائيا على "
|
||||
"أنها مسجلة عند شرائها من خلال أي من قنوات البيع المحددة. يمكن أن يكون هذا "
|
||||
"الخيار مفيدا عندما لا يتم التحقق من التذاكر المباعة في شباك التذاكر مرة أخرى "
|
||||
"قبل الدخول ويجب اعتبارها مصدقة مباشرة عند الشراء."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5189,6 +5189,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "منتجات"
|
||||
@@ -5618,6 +5621,7 @@ msgid "Item"
|
||||
msgstr "بند"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "متغيرات"
|
||||
|
||||
@@ -9954,9 +9958,9 @@ msgstr "الحد الأقصى لعدد العناصر لكل طلب"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14068,6 +14072,10 @@ msgstr "تاريخ الإنتهاء"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17317,6 +17325,8 @@ msgstr "كلمة المرور الجديدة تعيين"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17709,6 +17719,7 @@ msgstr[5] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17759,6 +17770,7 @@ msgstr "قم بالإلغاء"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18140,6 +18152,7 @@ msgid "Connected devices"
|
||||
msgstr "الأجهزة المتصلة"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "آلية الاختيار في"
|
||||
|
||||
@@ -18148,6 +18161,7 @@ msgstr "آلية الاختيار في"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19225,8 +19239,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25948,8 +25962,10 @@ msgstr "تم إنشاء الاختيار في قائمة جديدة."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "لم نتمكن من حفظ التغييرات الخاصة بك. انظر أدناه للحصول على التفاصيل."
|
||||
@@ -27700,17 +27716,8 @@ msgstr "نطاق معروف"
|
||||
msgid "Known domains"
|
||||
msgstr "نطاقات معروفة"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "شارات"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27721,6 +27728,174 @@ msgstr "شارات"
|
||||
msgid "the pretix team"
|
||||
msgstr "فريق pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "جميع مزودي خدمات السداد"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "جميع الإجراءات"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "تم تقديم طلب جديد"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "أجل إجعلها المدفوعة"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "قناة المبيعات"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "أنواع المنتج"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "تفعيل طريقة الدفع"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "آلية الاختيار في"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "تم حذف حكم الضرائب."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "تم حذف حكم الضرائب."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "تم حذف حكم الضرائب."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "آلية الدخول"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Confirmations"
|
||||
msgid "Conditions"
|
||||
msgstr "تأكيدات"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "الاختيار في حذف قائمة"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the team?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "هل أنت متأكد أنك تريد حذف الفريق؟"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "آلية الدخول"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "آلية الدخول"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "لم تقم بإنشاء أي القواعد الضريبية حتى الان."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "إنشاء الاختيار في قائمة جديدة"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "طريقة السداد"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "تم إنشاء المستخدم."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "تم حذف قاعدة الضريبة المحدد."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "شارات"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30406,12 +30581,6 @@ msgstr "تذكرة مخفضة"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "استخدام كنموذج لتحديد موعد جديد"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "لم تقم بإنشاء أي القواعد الضريبية حتى الان."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
#, fuzzy
|
||||
@@ -30507,18 +30676,6 @@ msgstr[3] "دخول قائمة الانتظار"
|
||||
msgstr[4] "دخول قائمة الانتظار"
|
||||
msgstr[5] "دخول قائمة الانتظار"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "تم إنشاء المستخدم."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "تم حذف قاعدة الضريبة المحدد."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -34932,6 +35089,17 @@ msgstr "الوصول إلى الكتابة"
|
||||
msgid "Kosovo"
|
||||
msgstr "كوسوفو"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "سيتم وضع علامة على جميع العناصر الموجودة في قائمة التسجيل هذه تلقائيا على "
|
||||
#~ "أنها مسجلة عند شرائها من خلال أي من قنوات البيع المحددة. يمكن أن يكون هذا "
|
||||
#~ "الخيار مفيدا عندما لا يتم التحقق من التذاكر المباعة في شباك التذاكر مرة "
|
||||
#~ "أخرى قبل الدخول ويجب اعتبارها مصدقة مباشرة عند الشراء."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "قناة بيع غير معروفة."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2023-11-19 06:00+0000\n"
|
||||
"Last-Translator: Adrià Vilanova Martínez <apps+translate-dot-pretix-dot-"
|
||||
"eu@avm99963.com>\n"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.1.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Anglès"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Alemany"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Alemany (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Àrab"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Xinès (simplificat)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Danès"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Holandès"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Holandès (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francès"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandès"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grec"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italià"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Letó"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polonès"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portuguès (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portuguès (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Rus"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Espanyol"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turc"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -420,23 +420,23 @@ msgstr ""
|
||||
"S'ha autoritzat a l'aplicació \"{application_name}\" a accedir al vostre "
|
||||
"compte."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "No podeu generar una factura per aquesta comanda."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Ja existeix una factura per aquesta comanda."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"S'ha produït un error enviant el correu. Si us plau intenteu-ho més tard."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "El producte seleccionat no està disponible en aquesta geografia."
|
||||
@@ -1718,6 +1718,8 @@ msgstr "Actiu"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Canals de venda"
|
||||
|
||||
@@ -2819,6 +2821,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -4020,10 +4025,9 @@ msgstr "Canals de venda amb check-in automàtic"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -5230,6 +5234,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Productes"
|
||||
@@ -5670,6 +5677,7 @@ msgid "Item"
|
||||
msgstr "Element"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variacions"
|
||||
|
||||
@@ -10046,9 +10054,9 @@ msgstr "Número màxim d'elements per comanda"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14236,6 +14244,10 @@ msgstr "Data de finalització"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17515,6 +17527,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17899,6 +17913,7 @@ msgstr[1] "Segur que voleu esborrar el val <strong>%(voucher)s</strong> ?"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17949,6 +17964,7 @@ msgstr "Cancel·lar"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18318,6 +18334,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -18326,6 +18343,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19351,8 +19369,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25692,8 +25710,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -27369,17 +27389,8 @@ msgstr "Domini conegut"
|
||||
msgid "Known domains"
|
||||
msgstr "Dominis coneguts"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Targes d'identificació"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27390,6 +27401,174 @@ msgstr "Targes d'identificació"
|
||||
msgid "the pretix team"
|
||||
msgstr "l'equip de pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Tots els proveïdors de pagament"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Variations"
|
||||
msgid "All variations"
|
||||
msgstr "Variacions"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "S'ha posat una nova comanda"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Order marked as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "S'ha marcat la comanda com a pagada"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canal de vendes"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Variacions del producte"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Activa el mètode de pagament"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Filtra per estat"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "This order position has been canceled."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Aquesta posició de la comanda s'ha cancel·lat."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "This order position has been canceled."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Aquesta posició de la comanda s'ha cancel·lat."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "This order position has been canceled."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Aquesta posició de la comanda s'ha cancel·lat."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Create a new user"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Crear un nou usuari"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Confirmations"
|
||||
msgid "Conditions"
|
||||
msgstr "Confirmacions"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Filtra per estat"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the following vouchers?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Segur que voleu esborrar els vals següents ?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Filtra per estat"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Filtra per estat"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any products yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Encara no heu creat cap producte."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new user"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Crear un nou usuari"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Mètode de pagament"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "S'ha actualitzat la cistella."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The presale period for this event has ended."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Ha finalitzat el període de prevenda d'aquest esdeveniment."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Targes d'identificació"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -29948,12 +30127,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Crear un nou usuari"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any products yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Encara no heu creat cap producte."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -30032,18 +30205,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Entrada a la llista d'espera"
|
||||
msgstr[1] "Entrada a la llista d'espera"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "S'ha actualitzat la cistella."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The presale period for this event has ended."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Ha finalitzat el període de prevenda d'aquest esdeveniment."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2023-09-15 15:21+0000\n"
|
||||
"Last-Translator: Michael <michael.happl@gmx.at>\n"
|
||||
"Language-Team: Czech <https://translate.pretix.eu/projects/pretix/pretix/cs/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.0.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Angličtina"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Němčina"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Němčina (neformální)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabština"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Čínština (zjednodušená)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Čínský jazyk (tradiční)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Čeština"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dánština"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Nizozemština"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Nizozemština (neformální)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francouzština"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finština"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galicijský"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Řečtina"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italština"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Lotyšština"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polština"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugalština (Portugalsko)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugalština (Brazílie)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumunština"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Ruština"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Španělština"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turečtina"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukrajinština"
|
||||
|
||||
@@ -401,22 +401,22 @@ msgid ""
|
||||
msgstr ""
|
||||
"Aplikace \"{application_name}\" byla autorizována pro přístup k vašemu účtu."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Nemůžete vygenerovat fakturu pro tuto objednávku."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Faktura pro tuto objednávku již existuje."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Chyba při posílání mailu. Prosím zkuste to znovu později."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Jeden z vybraných produktů není k dispozici ve vybrané zemi."
|
||||
@@ -1642,6 +1642,8 @@ msgstr "Aktivní"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Prodejní cesty"
|
||||
|
||||
@@ -2702,6 +2704,9 @@ msgstr "Výchozí hodnota je čas odeslání zprávy."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3855,16 +3860,10 @@ msgstr "B4B automaticky check-inout v"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Všechny položky na tomto check-in listu budou automaticky označeny jako "
|
||||
"odbavené, při nákupu prostřednictvím některého z vybraných prodejních "
|
||||
"kanálů. Tato možnost může být užitečná, pokud lístky prodávané v pokladně "
|
||||
"nejsou před vstupem znovu zkontrolovány a měly by být považovány za "
|
||||
"validované přímo při nákupu."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5036,6 +5035,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produkty"
|
||||
@@ -5437,6 +5439,7 @@ msgid "Item"
|
||||
msgstr "Produkt"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Varianty"
|
||||
|
||||
@@ -9624,9 +9627,9 @@ msgstr "Maximální počet záznamů na jednu e-mailovou adresu pro stejný prod
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13556,6 +13559,10 @@ msgstr "Datum konce"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16730,6 +16737,8 @@ msgstr "Nastavit nové heslo"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17117,6 +17126,7 @@ msgstr[2] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17167,6 +17177,7 @@ msgstr "Zrušit"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17539,6 +17550,7 @@ msgid "Connected devices"
|
||||
msgstr "Připojené zařízení"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatizovaný check-in"
|
||||
|
||||
@@ -17547,6 +17559,7 @@ msgstr "Automatizovaný check-in"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -18631,8 +18644,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -24743,8 +24756,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -26319,17 +26334,8 @@ msgstr "Známá doména"
|
||||
msgid "Known domains"
|
||||
msgstr "Známé domény"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -26340,6 +26346,175 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr "tým pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Všichni poskytovatelé plateb"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Všechny akce"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Byla vytvořena nová objednávka"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Create orders as fully paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Vytvořit objednávky jako plně zaplacené"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Pokud toto políčko necháte prázdné, bude vstupenka platná od okamžiku "
|
||||
"zakoupení."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "B2B Kanál"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Varianty"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Povolit způsob platby"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Automatizovaný check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Vlastní pravidlo pro check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Vlastní pravidlo pro check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The check-in list has been deleted."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Seznam pro check-in byl smazán."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Vlastní pravidlo pro check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Stav"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Odstranit seznam odbavení"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Opravdu chcete stanici odstranit?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Vlastní pravidlo pro check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Vlastní pravidlo pro check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Vytvořit nový seznam pro check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Způsob platby"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -28748,10 +28923,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Použít jako předlohu pro nové poukazy"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -28825,14 +28996,6 @@ msgstr[0] "%(number)s zápis na čekací listině"
|
||||
msgstr[1] "%(number)s položky na čekací listině"
|
||||
msgstr[2] "%(number)s položek na čekací listině"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -32986,6 +33149,18 @@ msgstr "Přístup k zápisu"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Všechny položky na tomto check-in listu budou automaticky označeny jako "
|
||||
#~ "odbavené, při nákupu prostřednictvím některého z vybraných prodejních "
|
||||
#~ "kanálů. Tato možnost může být užitečná, pokud lístky prodávané v pokladně "
|
||||
#~ "nejsou před vstupem znovu zkontrolovány a měly by být považovány za "
|
||||
#~ "validované přímo při nákupu."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Neznámý prodejní kanál."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 11:00+0000\n"
|
||||
"Last-Translator: Charliecoleg <DM229135@colegsirgar.ac.uk>\n"
|
||||
"Language-Team: Welsh <https://translate.pretix.eu/projects/pretix/pretix/cy/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"(n==3) ? 3 :(n==6) ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.1.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Saesneg"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Almaeneg"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Almaeneg (anffurfiol)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabeg"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Tsieineeg (syml)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Tsieineeg (traddodiadol)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tsieceg"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Daneg"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Iseldireg"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Iseldireg (anffurfiol)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Ffrangeg"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Ffinneg"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galiseg"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Groeg"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesaidd"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Eidaleg"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Latfieg"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Bokmål Norwyaidd"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Pwyleg"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portiwgaleg (Portiwgal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portiwgaleg (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rwmaneg"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Rwseg"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Sbaeneg"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Tyrceg"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Wcreineg"
|
||||
|
||||
@@ -386,22 +386,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1598,6 +1598,8 @@ msgstr "Actif"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2633,6 +2635,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3733,10 +3738,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4746,6 +4750,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5126,6 +5133,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8795,9 +8803,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12122,6 +12130,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15054,6 +15066,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15408,6 +15422,7 @@ msgstr[5] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15458,6 +15473,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15801,6 +15817,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15809,6 +15826,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16758,8 +16776,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22609,8 +22627,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24148,17 +24168,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24169,6 +24180,137 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Variation"
|
||||
msgid "All variations"
|
||||
msgstr "Amrywiad"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "reusable_media"
|
||||
#| msgid "Connections"
|
||||
msgid "Conditions"
|
||||
msgstr "Cysylltiadau"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payments"
|
||||
msgid "Payment methods"
|
||||
msgstr "Taliadau"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26440,10 +26582,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26515,14 +26653,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-07-19 03:00+0000\n"
|
||||
"Last-Translator: Nikolai <nikolai@lengefeldt.de>\n"
|
||||
"Language-Team: Danish <https://translate.pretix.eu/projects/pretix/pretix/da/"
|
||||
@@ -15,119 +15,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Engelsk"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Tysk"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Tysk (uformelt)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabisk"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr "Katalansk"
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Kinesisk (forenklet)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Kinesisk (traditionel)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tjekkisk"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dansk"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Hollandsk"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Hollandsk (uformelt)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Fransk"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finsk"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galicisk"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Græsk"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesisk"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiensk"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Lettisk"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Norsk (Bokmål)"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polsk"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugisisk (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugisisk (Brasilien)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumænsk"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russisk"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr "Slovakisk"
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr "Svensk"
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spansk"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Tyrkisk"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukrainsk"
|
||||
|
||||
@@ -401,22 +401,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr "Applikationen \"{application_name}\" kan nu tilgå din konto."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Du kan ikke generere en faktura for denne ordre."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "En faktura for denne bestilling findes allerede."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Mailen kunne ikke sendes. Prøv venligst igen senere."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Et af de valgte produkter er ikke til rådighed i det valgte land."
|
||||
@@ -1642,6 +1642,8 @@ msgstr "Aktiv"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Salgskanaler"
|
||||
|
||||
@@ -2703,6 +2705,9 @@ msgstr "Udeblivelser på rapporteringstidspunktet."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3858,16 +3863,10 @@ msgstr "Salgskanaler, som skal tjekkes ind automatisk"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Alle poster på denne tjek-ind-liste vil automatisk blive markeret som "
|
||||
"tjekket ind, hvis de er blevet købt igennem en af de valgte salgskanaler. "
|
||||
"Denne valgmulighed kan være nyttig, hvis billetter, som bliver solgt fra et "
|
||||
"billetkontor, ikke bliver tjekket igen ved indgangen, og derfor skal "
|
||||
"betragtes som gyldige direkte efter køb."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5037,6 +5036,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produkter"
|
||||
@@ -5446,6 +5448,7 @@ msgid "Item"
|
||||
msgstr "Element"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Varianter"
|
||||
|
||||
@@ -9645,9 +9648,9 @@ msgstr "Maksimalt antal pr. e-mailadresse for det samme produkt"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13422,6 +13425,10 @@ msgstr "Sluttidspunkt"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16614,6 +16621,8 @@ msgstr "Angiv ny adgangskode"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -16989,6 +16998,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17039,6 +17049,7 @@ msgstr "Annuller"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17398,6 +17409,7 @@ msgid "Connected devices"
|
||||
msgstr "Registrerede enheder"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
#, fuzzy
|
||||
msgid "Automated check-in"
|
||||
msgstr "Ikke tjekket ind"
|
||||
@@ -17407,6 +17419,7 @@ msgstr "Ikke tjekket ind"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
#, fuzzy
|
||||
@@ -18410,8 +18423,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -24657,8 +24670,10 @@ msgstr "Den nye tjek-ind-liste er blevet oprettet."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Vi kunne ikke gemme dine ændringer. Se detaljer nedenfor."
|
||||
@@ -26311,17 +26326,8 @@ msgstr "Kendt domæne"
|
||||
msgid "Known domains"
|
||||
msgstr "Kendte domæner"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -26332,6 +26338,167 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr "pretix-holdet"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Alle"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Alle handlinger"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Ny bestilling afgivet"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
msgid "After order was paid"
|
||||
msgstr "Marker som betalt"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Hvis du lader dette felt stå tomt, vil billetten være gyldig direkte efter "
|
||||
"køb."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Salgskanal"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Produktvarianter"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Aktiver betalingsmetode"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
msgid "Auto check-in"
|
||||
msgstr "Ikke tjekket ind"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Momsreglen er blevet slettet."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Momsreglen er blevet slettet."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Momsreglen er blevet slettet."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Ikke tjekket ind"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
msgid "Conditions"
|
||||
msgstr "Bekræftelser"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Slet tjek-ind-liste"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Er du sikker på at du vil slette gruppen?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Ikke tjekket ind"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Ikke tjekket ind"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Du har endnu ikke oprettet momsregler."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Opret ny tjek-ind-liste"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Betalingsmetode"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Bestilling oprettet."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Den valgte dato er blevet slettet."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -28774,11 +28941,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Brug som skabelon for ny dato"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Du har endnu ikke oprettet momsregler."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
#, fuzzy
|
||||
@@ -28857,16 +29019,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Ventelisteplads"
|
||||
msgstr[1] "Ventelisteplads"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Bestilling oprettet."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Den valgte dato er blevet slettet."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -33006,6 +33158,18 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Alle poster på denne tjek-ind-liste vil automatisk blive markeret som "
|
||||
#~ "tjekket ind, hvis de er blevet købt igennem en af de valgte salgskanaler. "
|
||||
#~ "Denne valgmulighed kan være nyttig, hvis billetter, som bliver solgt fra "
|
||||
#~ "et billetkontor, ikke bliver tjekket igen ved indgangen, og derfor skal "
|
||||
#~ "betragtes som gyldige direkte efter køb."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Ukendt salgskanal."
|
||||
|
||||
|
||||
@@ -4,8 +4,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"PO-Revision-Date: 2024-07-26 12:15+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-07-29 11:22+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"Language-Team: German <https://translate.pretix.eu/projects/pretix/pretix/de/"
|
||||
">\n"
|
||||
@@ -17,119 +17,119 @@ msgstr ""
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
"X-Poedit-Bookmarks: -1,-1,904,-1,-1,-1,-1,-1,-1,-1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Englisch"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Deutsch"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Deutsch (Du)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabisch"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr "Katalanisch"
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chinesisch (vereinfacht)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chinesisch (traditionell)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tschechisch"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dänisch"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Niederländisch"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Niederländisch (informell)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Französisch"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finnisch"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galicisch"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Griechisch"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesisch"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italienisch"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Lettisch"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Norwegisch (Bokmål)"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polnisch"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugiesisch (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugiesisch (Brasilien)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumänisch"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russisch"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr "Slowakisch"
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr "Schwedisch"
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spanisch"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Türkisch"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukrainisch"
|
||||
|
||||
@@ -402,24 +402,24 @@ msgstr ""
|
||||
"Der Applikation \"{application_name}\" wurde der Zugriff auf Ihr Konto "
|
||||
"erlaubt."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Sie können für diese Bestellung keine Rechnung erzeugen."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Zu dieser Bestellung gibt es bereits eine Rechnung."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Es gab ein Fehler beim Senden der E-Mail. Bitte probieren Sie es später "
|
||||
"erneut."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1645,6 +1645,8 @@ msgstr "aktiviert"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Verkaufskanäle"
|
||||
|
||||
@@ -2711,6 +2713,9 @@ msgstr "Standardmäßig wird der Zeitpunkt der Berichtserstellung verwendet."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3872,16 +3877,14 @@ msgstr "Automatischer Check-in auf bestimmten Verkaufskanälen"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Alle Produkte auf dieser Check-in-Liste werden automatisch als eingecheckt "
|
||||
"markiert, wenn sie durch einen der hier eingestellten Verkaufskanäle "
|
||||
"verkauft werden. Diese Option kann z.B. nützlich sein, wenn an der "
|
||||
"Abendkasse verkaufte Tickets nicht beim Einlass nochmal gescannt werden "
|
||||
"sondern direkt als eingecheckt markiert werden sollen."
|
||||
"Diese Option ist veraltet und wird in den nächsten Monaten entfernt. Als "
|
||||
"Ersatz kann unsere neue Erweiterung \"Auto-Check-in\" verwendet werden. Wenn "
|
||||
"wir diese Option entfernen, migrieren wir diese Veranstaltung automatisch "
|
||||
"auf die neue Erweiterung."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5063,6 +5066,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produkte"
|
||||
@@ -5488,6 +5494,7 @@ msgid "Item"
|
||||
msgstr "Produkt"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Varianten"
|
||||
|
||||
@@ -9759,9 +9766,9 @@ msgstr "Maximale Anzahl von Einträgen pro E-Mail-Adresse für das selbe Produkt
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
"Mit einem erhöhten Limit kann ein Kunde mehr als ein Ticket für ein "
|
||||
"bestimmtes Produkt mit der gleichen E-Mail-Adresse anfordern. Unabhängig von "
|
||||
@@ -13791,6 +13798,10 @@ msgstr "Ende"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17039,6 +17050,8 @@ msgstr "Neues Passwort setzen"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17418,6 +17431,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17468,6 +17482,7 @@ msgstr "Abbrechen"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17838,6 +17853,7 @@ msgid "Connected devices"
|
||||
msgstr "Verbundene Geräte"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatischer Check-In"
|
||||
|
||||
@@ -17846,6 +17862,7 @@ msgstr "Automatischer Check-In"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19000,8 +19017,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25610,8 +25627,10 @@ msgstr "Die neue Check-in-Liste wurde erstellt."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -27354,17 +27373,8 @@ msgstr "Bekannte Domain"
|
||||
msgid "Known domains"
|
||||
msgstr "Bekannte Domains"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27375,6 +27385,134 @@ msgstr "Badges"
|
||||
msgid "the pretix team"
|
||||
msgstr "Das pretix-Team"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr "Bestimmte Tickets automatisch einchecken, nachdem sie verkauft wurden."
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Nur bei Verwendung dieser Zahlungsmethoden"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr "Alle Varianten"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
"Wenn die Regel auf bestimmte Zahlungsmethoden eingeschränkt ist, sollte sie "
|
||||
"erst nach erfolgter Zahlung ausgeführt werden."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr "Nach Eingang der Bestellung"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr "Nach vollständiger Bezahlung der Bestellung"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Wenn Sie dieses Feld leer lassen, werden alle Listen, die auf das gekaufte "
|
||||
"Produkt passen, verwendet."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr "Alle Verkaufskanäle"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr "Alle Produkte und Varianten"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr "Alle Zahlungsmethoden"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr "Auto-Check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Eine automatische Check-in-Regel wurde erstellt"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Eine automatische Check-in-Regel wurde geändert"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Eine automatische Check-in-Regel wurde gelöscht"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Auto-Check-in-Regel erstellen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr "Bedingungen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Auto-Check-in-Regel löschen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Möchten Sie die Auto-Check-in-Regel wirklich löschen?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Auto-Check-In-Regel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Auto-Check-in-Regeln"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Sie haben bisher keine Regeln erstellt."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Neue Auto-Check-in-Regel erstellen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr "Zahlungsmethoden"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Ihre Regel wurde erstellt."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Die ausgewählte Regel wurde gelöscht."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -29917,10 +30055,6 @@ msgstr "Versandzeiten anzeigen"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Als Vorlage für neue Regel verwenden"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Sie haben bisher keine Regeln erstellt."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -30004,14 +30138,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "%(number)s Wartelisteneintrag"
|
||||
msgstr[1] "%(number)s Wartelisteneinträge"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Ihre Regel wurde erstellt."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Die ausgewählte Regel wurde gelöscht."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -34307,6 +34433,18 @@ msgstr "Schreibzugriff"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Alle Produkte auf dieser Check-in-Liste werden automatisch als "
|
||||
#~ "eingecheckt markiert, wenn sie durch einen der hier eingestellten "
|
||||
#~ "Verkaufskanäle verkauft werden. Diese Option kann z.B. nützlich sein, "
|
||||
#~ "wenn an der Abendkasse verkaufte Tickets nicht beim Einlass nochmal "
|
||||
#~ "gescannt werden sondern direkt als eingecheckt markiert werden sollen."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Unbekannter Verkaufskanal."
|
||||
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"PO-Revision-Date: 2024-07-26 12:15+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-07-31 19:00+0000\n"
|
||||
"Last-Translator: pajowu <pajowu@pajowu.de>\n"
|
||||
"Language-Team: German (informal) <https://translate.pretix.eu/projects/"
|
||||
"pretix/pretix/de_Informal/>\n"
|
||||
"Language: de_Informal\n"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Englisch"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Deutsch"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Deutsch (Du)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabisch"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr "Katalanisch"
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chinesisch (vereinfacht)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chinesisch (traditionell)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tschechisch"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dänisch"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Niederländisch"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Niederländisch (informell)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Französisch"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finnisch"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galicisch"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Griechisch"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesisch"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italienisch"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Lettisch"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Norwegisch (Bokmål)"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polnisch"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugiesisch (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugiesisch (Brasilien)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumänisch"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russisch"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr "Slowakisch"
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr "Schwedisch"
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spanisch"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Türkisch"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukrainisch"
|
||||
|
||||
@@ -404,23 +404,23 @@ msgstr ""
|
||||
"Der Applikation \"{application_name}\" wurde der Zugriff auf dein Konto "
|
||||
"erlaubt."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Du kannst für diese Bestellung keine Rechnung erzeugen."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Zu dieser Bestellung gibt es bereits eine Rechnung."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Es gab ein Fehler beim Senden der E-Mail. Bitte probiere es später erneut."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1646,6 +1646,8 @@ msgstr "aktiviert"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Verkaufskanäle"
|
||||
|
||||
@@ -2712,6 +2714,9 @@ msgstr "Standardmäßig wird der Zeitpunkt der Berichtserstellung verwendet."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3871,16 +3876,14 @@ msgstr "Automatischer Check-in auf bestimmten Verkaufskanälen"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Alle Produkte auf dieser Check-in-Liste werden automatisch als eingecheckt "
|
||||
"markiert, wenn sie durch einen der hier eingestellten Verkaufskanäle "
|
||||
"verkauft werden. Diese Option kann z.B. nützlich sein, wenn an der "
|
||||
"Abendkasse verkaufte Tickets nicht beim Einlass nochmal gescannt werden "
|
||||
"sondern direkt als eingecheckt markiert werden sollen."
|
||||
"Diese Option ist veraltet und wird in den nächsten Monaten entfernt. Als "
|
||||
"Ersatz kann unsere neue Erweiterung \"Auto-Check-in\" verwendet werden. Wenn "
|
||||
"wir diese Option entfernen, migrieren wir diese Veranstaltung automatisch "
|
||||
"auf die neue Erweiterung."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5059,6 +5062,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produkte"
|
||||
@@ -5484,6 +5490,7 @@ msgid "Item"
|
||||
msgstr "Produkt"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Varianten"
|
||||
|
||||
@@ -9745,9 +9752,9 @@ msgstr "Maximale Anzahl von Einträgen pro E-Mail-Adresse für das selbe Produkt
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
"Mit einem erhöhten Limit kann ein Kunde mehr als ein Ticket für ein "
|
||||
"bestimmtes Produkt mit der gleichen E-Mail-Adresse anfordern. Unabhängig von "
|
||||
@@ -13767,6 +13774,10 @@ msgstr "Ende"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17012,6 +17023,8 @@ msgstr "Neues Passwort setzen"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17390,6 +17403,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17440,6 +17454,7 @@ msgstr "Abbrechen"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17810,6 +17825,7 @@ msgid "Connected devices"
|
||||
msgstr "Verbundene Geräte"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatischer Check-In"
|
||||
|
||||
@@ -17818,6 +17834,7 @@ msgstr "Automatischer Check-In"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -18968,8 +18985,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25566,8 +25583,10 @@ msgstr "Die neue Check-in-Liste wurde erstellt."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -27306,17 +27325,8 @@ msgstr "Bekannte Domain"
|
||||
msgid "Known domains"
|
||||
msgstr "Bekannte Domains"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27327,6 +27337,134 @@ msgstr "Badges"
|
||||
msgid "the pretix team"
|
||||
msgstr "Das pretix-Team"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr "Bestimmte Tickets automatisch einchecken, nachdem sie verkauft wurden."
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Nur bei Verwendung dieser Zahlungsmethoden"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr "Alle Varianten"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
"Wenn die Regel auf bestimmte Zahlungsmethoden eingeschränkt ist, sollte sie "
|
||||
"erst nach erfolgter Zahlung ausgeführt werden."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr "Nach Eingang der Bestellung"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr "Nach vollständiger Bezahlung der Bestellung"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Wenn du dieses Feld leer lässt, werden alle Listen, die auf das gekaufte "
|
||||
"Produkt passen, verwendet."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr "Verkaufskanal hinzufügen"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr "Alle Produkte und Varianten"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr "Alle Zahlungsmethoden"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr "Auto-Check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Eine automatische Check-in-Regel wurde erstellt"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Eine automatische Check-in-Regel wurde geändert"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Eine automatische Check-in-Regel wurde gelöscht"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Auto-Check-in-Regel erstellen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr "Bedingungen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Auto-Check-in-Regel löschen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Möchtest du die Auto-Check-in-Regel wirklich löschen?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Auto-Check-In-Regel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Auto-Check-in-Regeln"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Du hast bisher keine Regeln erstellt."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Neue Auto-Check-in-Regel erstellen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr "Zahlungsmethoden"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Deine Regel wurde erstellt."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Die ausgewählte Regel wurde gelöscht."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -28902,7 +29040,7 @@ msgid ""
|
||||
"clicking on the following button, you can either create a new PayPal account "
|
||||
"or connect pretix to an existing one."
|
||||
msgstr ""
|
||||
"Um Zahlungen mit Stripe zu akzeptieren, benötigst du ein Konto bei PayPal. "
|
||||
"Um Zahlungen mit PayPal zu akzeptieren, benötigst du ein Konto bei PayPal. "
|
||||
"Mit einem Klick auf diesen Button kannst du entweder ein neues PayPal-Konto "
|
||||
"erstellen oder pretix mit einem bestehenden PayPal-Konto verknüpfen."
|
||||
|
||||
@@ -29867,10 +30005,6 @@ msgstr "Versandzeiten anzeigen"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Als Vorlage für neue Regel verwenden"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Du hast bisher keine Regeln erstellt."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -29954,14 +30088,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "%(number)s Wartelisteneintrag"
|
||||
msgstr[1] "%(number)s Wartelisteneinträge"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Deine Regel wurde erstellt."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Die ausgewählte Regel wurde gelöscht."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -34243,6 +34369,18 @@ msgstr "Schreibzugriff"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Alle Produkte auf dieser Check-in-Liste werden automatisch als "
|
||||
#~ "eingecheckt markiert, wenn sie durch einen der hier eingestellten "
|
||||
#~ "Verkaufskanäle verkauft werden. Diese Option kann z.B. nützlich sein, "
|
||||
#~ "wenn an der Abendkasse verkaufte Tickets nicht beim Einlass nochmal "
|
||||
#~ "gescannt werden sondern direkt als eingecheckt markiert werden sollen."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Unbekannter Verkaufskanal."
|
||||
|
||||
|
||||
+191
-68
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -18,119 +18,119 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -380,22 +380,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1592,6 +1592,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2627,6 +2629,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3727,10 +3732,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4738,6 +4742,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5118,6 +5125,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8784,9 +8792,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12108,6 +12116,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15038,6 +15050,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15386,6 +15400,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15436,6 +15451,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15779,6 +15795,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15787,6 +15804,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16736,8 +16754,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22562,8 +22580,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24099,17 +24119,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24120,6 +24131,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26389,10 +26524,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26464,14 +26595,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:19+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-05-31 15:52+0000\n"
|
||||
"Last-Translator: danijossnet <danijoss@yahoo.com>\n"
|
||||
"Language-Team: Greek <https://translate.pretix.eu/projects/pretix/pretix/el/"
|
||||
@@ -19,123 +19,123 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.5.5\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Αγγλικά"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Γερμανικά"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Γερμανικά (ανεπίσημα)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Κινέζικα (απλοποιημένα)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Δανικά"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Ολλανδικά"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Ολλανδικά (ανεπίσημα)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Γαλλικά"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
#, fuzzy
|
||||
#| msgid "Danish"
|
||||
msgid "Finnish"
|
||||
msgstr "Δανικά"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Ιταλικά"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Πολωνικά"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Portuguese (Brazil)"
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Πορτογαλικά (Βραζιλία)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Πορτογαλικά (Βραζιλία)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Ισπανικά"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Τούρκικα"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -430,24 +430,24 @@ msgstr ""
|
||||
"Η εφαρμογή \"{application_name}\" έχει εξουσιοδοτηθεί για πρόσβαση στον "
|
||||
"λογαριασμό σας."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Δεν μπορείτε να δημιουργήσετε τιμολόγιο για αυτήν την παραγγελία."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Ένα τιμολόγιο για αυτήν την παραγγελία υπάρχει ήδη."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Παρουσιάστηκε σφάλμα κατά την αποστολή του μηνύματος. Παρακαλώ προσπαθήστε "
|
||||
"ξανά αργότερα."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
#, fuzzy
|
||||
#| msgid "The selected product is not active or has no price set."
|
||||
@@ -1759,6 +1759,8 @@ msgstr "Ενεργό"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Δίκτυα πωλήσεων"
|
||||
|
||||
@@ -2904,6 +2906,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -4183,10 +4188,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -5440,6 +5444,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Προϊόντα"
|
||||
@@ -5903,6 +5910,7 @@ msgid "Item"
|
||||
msgstr "Αντικείμενο"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Παραλλαγές"
|
||||
|
||||
@@ -10423,9 +10431,9 @@ msgstr "Μέγιστος αριθμός αντικειμένων ανά παρα
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14705,6 +14713,10 @@ msgstr "Ημερομηνία λήξης"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -18241,6 +18253,8 @@ msgstr "Ορίστε νέο κωδικό πρόσβασης"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -18651,6 +18665,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -18701,6 +18716,7 @@ msgstr "Ματαίωση"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -19094,6 +19110,7 @@ msgid "Connected devices"
|
||||
msgstr "Συνδεδεμένες συσκευές"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Automated check-in"
|
||||
@@ -19104,6 +19121,7 @@ msgstr "Όχι έλεγχος"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
#, fuzzy
|
||||
@@ -20246,8 +20264,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -27267,8 +27285,10 @@ msgstr "Η νέα λίστα ελέγχου έχει δημιουργηθεί."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -29095,17 +29115,8 @@ msgstr "Γνωστό domain"
|
||||
msgid "Known domains"
|
||||
msgstr "Γνωστά domains"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Ταυτότητες"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -29116,6 +29127,174 @@ msgstr "Ταυτότητες"
|
||||
msgid "the pretix team"
|
||||
msgstr "η ομάδα του pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Όλοι οι πάροχοι πληρωμών"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Όλες οι ενέργειες"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Νέα παραγγελία"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Σημειώστε την παραγγελία ως πληρωμένη"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Kανάλι πωλήσεων"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Παραλλαγές προϊόντων"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Ενεργοποιήστε τη μέθοδο πληρωμής"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Όχι έλεγχος"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Ο φορολογικός κανόνας έχει διαγραφεί."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Ο φορολογικός κανόνας έχει διαγραφεί."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Ο φορολογικός κανόνας έχει διαγραφεί."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Όχι έλεγχος"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Confirmations"
|
||||
msgid "Conditions"
|
||||
msgstr "Επιβεβαιώσεις"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Διαγραφή της λίστας check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the team?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Είστε βέβαιοι ότι θέλετε να διαγράψετε την ομάδα;"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Όχι έλεγχος"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Όχι έλεγχος"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Δεν έχετε δημιουργήσει ακόμα φορολογικούς κανόνες."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Δημιουργήστε μια νέα check-in λίστα"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Μέθοδος πληρωμής"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Ο χρήστης έχει δημιουργηθεί."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Ο επιλεγμένος κανόνας φόρου έχει διαγραφεί."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Ταυτότητες"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -31883,12 +32062,6 @@ msgstr "Μειωμένο εισιτήριο"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Χρησιμοποιήστε ως πρότυπο για μια νέα ημερομηνία"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Δεν έχετε δημιουργήσει ακόμα φορολογικούς κανόνες."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
#, fuzzy
|
||||
@@ -31976,18 +32149,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Αναμονή καταχώρησης λίστας"
|
||||
msgstr[1] "Αναμονή καταχώρησης λίστας"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Ο χρήστης έχει δημιουργηθεί."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Ο επιλεγμένος κανόνας φόρου έχει διαγραφεί."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -17,119 +17,119 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -379,22 +379,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1591,6 +1591,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2626,6 +2628,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3726,10 +3731,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4737,6 +4741,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5117,6 +5124,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8783,9 +8791,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12107,6 +12115,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15037,6 +15049,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15385,6 +15399,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15435,6 +15450,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15778,6 +15794,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15786,6 +15803,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16735,8 +16753,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22561,8 +22579,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24098,17 +24118,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24119,6 +24130,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26388,10 +26523,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26463,14 +26594,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-07-23 10:22+0000\n"
|
||||
"Last-Translator: Alberto Ortega <ortega16.cieza@gmail.com>\n"
|
||||
"Language-Team: Spanish <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Inglés"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Alemán"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Alemán (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Árabe"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr "catalán"
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chino (simplificado)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chino (tradicional)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Checo"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Danés"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Holandés"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Holandés (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francés"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Danés"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Gallego"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Griego"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesio"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Letón"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Noruego Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polaco"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugués (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugués (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumano"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Ruso"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr "eslovaco"
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr "sueco"
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Español"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turko"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ucraniano"
|
||||
|
||||
@@ -405,23 +405,23 @@ msgstr ""
|
||||
"La aplicación \"{application_name}\" ha sido autorizada para acceder a tu "
|
||||
"cuenta."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "No se puede generar una factura para este pedido."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Ya existe una factura para este pedido."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Hubo un error al enviar el correo. Por favor, inténtelo de nuevo más tarde."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1655,6 +1655,8 @@ msgstr "Activo"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Canal de ventas"
|
||||
|
||||
@@ -2721,6 +2723,9 @@ msgstr "De forma predeterminada es el momento del reporte."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3887,16 +3892,10 @@ msgstr "Canales de venta para registrarse automáticamente"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Todos los artículos de esta lista de check-in se marcarán automáticamente "
|
||||
"como check-in cuando se compren a través de cualquiera de los canales de "
|
||||
"venta seleccionados. Esta opción puede resultar útil cuando las entradas "
|
||||
"vendidas en taquilla no se vuelven a comprobar antes de la entrada y deben "
|
||||
"considerarse validadas directamente en el momento de la compra."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5091,6 +5090,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Productos"
|
||||
@@ -5515,6 +5517,7 @@ msgid "Item"
|
||||
msgstr "Item"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variaciones"
|
||||
|
||||
@@ -9810,9 +9813,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13850,6 +13853,10 @@ msgstr "Fecha de fin"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17203,6 +17210,8 @@ msgstr "Establecer nueva contraseña"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17605,6 +17614,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17655,6 +17665,7 @@ msgstr "Cancelar"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18038,6 +18049,7 @@ msgid "Connected devices"
|
||||
msgstr "Dispositivos conectados"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
#, fuzzy
|
||||
msgid "Automated check-in"
|
||||
msgstr "No chequeado"
|
||||
@@ -18047,6 +18059,7 @@ msgstr "No chequeado"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
#, fuzzy
|
||||
@@ -19213,8 +19226,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25990,8 +26003,10 @@ msgstr "Se ha creado la nueva lista de registro."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "No podemos guardar tus cambios. Ver los detalles a continuación."
|
||||
@@ -27774,17 +27789,8 @@ msgstr "Dominio conocido"
|
||||
msgid "Known domains"
|
||||
msgstr "Dominios conocidos"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Insignias"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27795,6 +27801,168 @@ msgstr "Insignias"
|
||||
msgid "the pretix team"
|
||||
msgstr "el equipo de pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Todos los proveedores de pago"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Todas las acciones"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Se hizo nuevo pedido"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Marcar pedido como pagado"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid "If you keep this empty, all input will be allowed."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr "Si lo mantiene vacío, se permitirán todas las entradas."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canal de ventas"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Variaciones de los productos"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Habilitar método de pago"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
msgid "Auto check-in"
|
||||
msgstr "No chequeado"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Se creó una regla de correo electrónico"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Se actualizó una regla de correo electrónico"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Se eliminó una regla de correo electrónico"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "No chequeado"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Condición"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Borrar lista de registro"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "¿Está seguro de que desea eliminar la puerta?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "No chequeado"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "No chequeado"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Aún no has creado ninguna regla."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Crear una nueva lista de registro"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Método de pago"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Se ha creado el usuario."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "La regla seleccionada ha sido eliminada."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Insignias"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30460,10 +30628,6 @@ msgstr "Inspeccionar los horarios programados"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Usar como plantilla para una nueva fecha"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Aún no has creado ninguna regla."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
#, fuzzy
|
||||
@@ -30550,15 +30714,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "%(number)s entrada en la lista de espera"
|
||||
msgstr[1] "%(number)s entradas en la lista de espera"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Se ha creado el usuario."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "La regla seleccionada ha sido eliminada."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -34952,6 +35107,18 @@ msgstr "Acceso de escritura"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Todos los artículos de esta lista de check-in se marcarán automáticamente "
|
||||
#~ "como check-in cuando se compren a través de cualquiera de los canales de "
|
||||
#~ "venta seleccionados. Esta opción puede resultar útil cuando las entradas "
|
||||
#~ "vendidas en taquilla no se vuelven a comprobar antes de la entrada y "
|
||||
#~ "deben considerarse validadas directamente en el momento de la compra."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Canal de ventas desconocido."
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -3,136 +3,137 @@
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:19+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"PO-Revision-Date: 2024-08-23 11:42+0000\n"
|
||||
"Last-Translator: Albizuri <oier@puntu.eus>\n"
|
||||
"Language-Team: Basque <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||
"eu/>\n"
|
||||
"Language: eu\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"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.7\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 "Ordaindutzat markatua"
|
||||
|
||||
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:76
|
||||
msgid "Comment:"
|
||||
msgstr ""
|
||||
msgstr "Iruzkina:"
|
||||
|
||||
#: 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 "Kreditu txartela"
|
||||
|
||||
#: 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 Zuzeneko Zordunketa"
|
||||
|
||||
#: 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
|
||||
msgid "Continue"
|
||||
msgstr ""
|
||||
msgstr "Jarraitu"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:225
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:244
|
||||
@@ -141,207 +142,207 @@ 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 "Ordainketa egiaztatzen …"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:254
|
||||
msgid "Payment method unavailable"
|
||||
msgstr ""
|
||||
msgstr "Ordainketa-modu hau ez dago erabilgarri"
|
||||
|
||||
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:15
|
||||
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:39
|
||||
msgid "Placed orders"
|
||||
msgstr ""
|
||||
msgstr "Egindako eskaerak"
|
||||
|
||||
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:15
|
||||
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:39
|
||||
msgid "Paid orders"
|
||||
msgstr ""
|
||||
msgstr "Ordaindutako eskaerak"
|
||||
|
||||
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:27
|
||||
msgid "Total revenue"
|
||||
msgstr ""
|
||||
msgstr "Diru-sarrerak guztira"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:15
|
||||
msgid "Contacting Stripe …"
|
||||
msgstr ""
|
||||
msgstr "Stripe-ekin kontaktatzen …"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:72
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
msgstr "Guztira"
|
||||
|
||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:291
|
||||
msgid "Contacting your bank …"
|
||||
msgstr ""
|
||||
msgstr "Zure bankuarekin kontaktatzen …"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:30
|
||||
msgid "Select a check-in list"
|
||||
msgstr ""
|
||||
msgstr "Hautatu erregistro-zerrenda bat"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:31
|
||||
msgid "No active check-in lists found."
|
||||
msgstr ""
|
||||
msgstr "Ez da aurkitu erregistro-zerrenda aktiborik."
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:32
|
||||
msgid "Switch check-in list"
|
||||
msgstr ""
|
||||
msgstr "Erregistro-zerrenda aldatu"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:33
|
||||
msgid "Search results"
|
||||
msgstr ""
|
||||
msgstr "Emaitzak bilatu"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:34
|
||||
msgid "No tickets found"
|
||||
msgstr ""
|
||||
msgstr "Ez da tiketik aurkitu"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:35
|
||||
msgid "Result"
|
||||
msgstr ""
|
||||
msgstr "Emaitza"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:36
|
||||
msgid "This ticket requires special attention"
|
||||
msgstr ""
|
||||
msgstr "Tiket honek arreta berezia eskatzen du"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:37
|
||||
msgid "Switch direction"
|
||||
msgstr ""
|
||||
msgstr "Helbidea aldatu"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:38
|
||||
msgid "Entry"
|
||||
msgstr ""
|
||||
msgstr "Sarbidea"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:39
|
||||
msgid "Exit"
|
||||
msgstr ""
|
||||
msgstr "Irteera"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:40
|
||||
msgid "Scan a ticket or search and press return…"
|
||||
msgstr ""
|
||||
msgstr "Eskaneatu tiket bat edo bilatu eta sakatu itzuli…"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:41
|
||||
msgid "Load more"
|
||||
msgstr ""
|
||||
msgstr "Gehiago kargatu"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:42
|
||||
msgid "Valid"
|
||||
msgstr ""
|
||||
msgstr "Baliozkoa"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:43
|
||||
msgid "Unpaid"
|
||||
msgstr ""
|
||||
msgstr "Ordaindu gabea"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:44
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:45
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
msgstr "Ezeztatua"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:46
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
msgstr "Baieztatua"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:47
|
||||
msgid "Approval pending"
|
||||
msgstr ""
|
||||
msgstr "Onartzeko zain"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||
msgid "Redeemed"
|
||||
msgstr ""
|
||||
msgstr "Berrerosia"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:49
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Ezeztatu"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:51
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:60
|
||||
msgid "Ticket not paid"
|
||||
msgstr ""
|
||||
msgstr "Tiketa ordaindu gabe"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:52
|
||||
msgid "This ticket is not yet paid. Do you want to continue anyways?"
|
||||
msgstr ""
|
||||
msgstr "Tiket hori oraindik ordaindu gabe dago. Jarraitu nahi duzu, dena den?"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:53
|
||||
msgid "Additional information required"
|
||||
msgstr ""
|
||||
msgstr "Beharrezko informazio gehigarria"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:54
|
||||
msgid "Valid ticket"
|
||||
msgstr ""
|
||||
msgstr "Baliozko tiketa"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:55
|
||||
msgid "Exit recorded"
|
||||
msgstr ""
|
||||
msgstr "Irteera erregistratua"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:56
|
||||
msgid "Ticket already used"
|
||||
msgstr ""
|
||||
msgstr "Erabilitako tiketa"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:57
|
||||
msgid "Information required"
|
||||
msgstr ""
|
||||
msgstr "Beharrezko informazioa"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:58
|
||||
msgid "Unknown ticket"
|
||||
msgstr ""
|
||||
msgstr "Tiket ezezaguna"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:59
|
||||
msgid "Ticket type not allowed here"
|
||||
msgstr ""
|
||||
msgstr "Tiket mota hau ez da onartzen hemen"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:61
|
||||
msgid "Entry not allowed"
|
||||
msgstr ""
|
||||
msgstr "Ezin da sartu"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:62
|
||||
msgid "Ticket code revoked/changed"
|
||||
msgstr ""
|
||||
msgstr "Baliogabetutako/aldatutako tiketaren kodea"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:63
|
||||
msgid "Ticket blocked"
|
||||
msgstr ""
|
||||
msgstr "Tiketa blokeatuta"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:64
|
||||
msgid "Ticket not valid at this time"
|
||||
msgstr ""
|
||||
msgstr "Tiketa ez dago erabilgarri momentu honetan"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:65
|
||||
msgid "Order canceled"
|
||||
msgstr ""
|
||||
msgstr "Eskaera ezeztatua"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:66
|
||||
msgid "Ticket code is ambiguous on list"
|
||||
msgstr ""
|
||||
msgstr "Tiketaren kodea anbiguoa da zerrendan"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:67
|
||||
msgid "Order not approved"
|
||||
msgstr ""
|
||||
msgstr "Ez da onartu eskaera"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:68
|
||||
msgid "Checked-in Tickets"
|
||||
msgstr ""
|
||||
msgstr "Tiketak erosita"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:69
|
||||
msgid "Valid Tickets"
|
||||
msgstr ""
|
||||
msgstr "Baliozko tiketak"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:70
|
||||
msgid "Currently inside"
|
||||
msgstr ""
|
||||
msgstr "Barruan orain bertan"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:71
|
||||
#: pretix/static/pretixcontrol/js/ui/question.js:137
|
||||
#: pretix/static/pretixpresale/js/ui/questions.js:270
|
||||
msgid "Yes"
|
||||
msgstr ""
|
||||
msgstr "Bai"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:72
|
||||
#: pretix/static/pretixcontrol/js/ui/question.js:138
|
||||
#: pretix/static/pretixpresale/js/ui/questions.js:270
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
msgstr "Ez"
|
||||
|
||||
#: pretix/static/lightbox/js/lightbox.js:96
|
||||
msgid "close"
|
||||
msgstr ""
|
||||
msgstr "itxi"
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:58
|
||||
#: pretix/static/pretixbase/js/asynctask.js:135
|
||||
@@ -349,11 +350,13 @@ msgid ""
|
||||
"Your request is currently being processed. Depending on the size of your "
|
||||
"event, this might take up to a few minutes."
|
||||
msgstr ""
|
||||
"Zure eskaera prozesatzen ari dira. Gertaeraren tamainaren arabera, baliteke "
|
||||
"minutu batzuk behar izatea."
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:63
|
||||
#: pretix/static/pretixbase/js/asynctask.js:140
|
||||
msgid "Your request has been queued on the server and will soon be processed."
|
||||
msgstr ""
|
||||
msgstr "Zure eskaera zerbitzarian gorde da eta laster prozesatuko da."
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:69
|
||||
#: pretix/static/pretixbase/js/asynctask.js:146
|
||||
@@ -362,34 +365,41 @@ msgid ""
|
||||
"If this takes longer than two minutes, please contact us or go back in your "
|
||||
"browser and try again."
|
||||
msgstr ""
|
||||
"Zure eskaera zerbitzarira iritsi da, baina oraindik prozesatzea espero dugu. "
|
||||
"Bi minutu baino gehiago irauten badu, mesedez, jarri gurekin harremanetan "
|
||||
"edo itzuli zure nabigatzailera eta saiatu berriro."
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:105
|
||||
#: pretix/static/pretixbase/js/asynctask.js:193
|
||||
#: pretix/static/pretixbase/js/asynctask.js:198
|
||||
#: pretix/static/pretixcontrol/js/ui/mail.js:24
|
||||
msgid "An error of type {code} occurred."
|
||||
msgstr ""
|
||||
msgstr "{kode} motako errore bat gertatu da."
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:108
|
||||
msgid ""
|
||||
"We currently cannot reach the server, but we keep trying. Last error code: "
|
||||
"{code}"
|
||||
msgstr ""
|
||||
"Orain bertan ezin gara zerbitzarira iritsi, baina saiatzen jarraitzen dugu. "
|
||||
"Azken errore-kodea: {kodea}"
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:160
|
||||
#: pretix/static/pretixcontrol/js/ui/mail.js:21
|
||||
msgid "The request took too long. Please try again."
|
||||
msgstr ""
|
||||
msgstr "Gehiegi luzatu da eskaera. Mesedez, saiatu berriro."
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:201
|
||||
#: pretix/static/pretixcontrol/js/ui/mail.js:26
|
||||
msgid ""
|
||||
"We currently cannot reach the server. Please try again. Error code: {code}"
|
||||
msgstr ""
|
||||
"Une honetan ezin gara zerbitzarira iritsi. Mesedez, saiatu berriro. Errore-"
|
||||
"kodea: {kodea}"
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:230
|
||||
msgid "We are processing your request …"
|
||||
msgstr ""
|
||||
msgstr "Zure eskaera prozesatzen ari gara …"
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:238
|
||||
msgid ""
|
||||
@@ -397,81 +407,84 @@ msgid ""
|
||||
"than one minute, please check your internet connection and then reload this "
|
||||
"page and try again."
|
||||
msgstr ""
|
||||
"Une honetan zure eskaera zerbitzarira bidaltzen ari gara. Honek minutu bat "
|
||||
"baino gehiago irauten badu, mesedez, berrikusi zure Interneteko konexioa eta "
|
||||
"gero kargatu berriro orri hau eta saiatu berriro."
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:301
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:71
|
||||
msgid "Close message"
|
||||
msgstr ""
|
||||
msgstr "Mezua itxi"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/clipboard.js:23
|
||||
msgid "Copied!"
|
||||
msgstr ""
|
||||
msgstr "Kopiatuta!"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/clipboard.js:29
|
||||
msgid "Press Ctrl-C to copy!"
|
||||
msgstr ""
|
||||
msgstr "Sakatu Ctrl-C kopiatzeko!"
|
||||
|
||||
#: 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 "-ko bat da"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:30
|
||||
msgid "is before"
|
||||
msgstr ""
|
||||
msgstr "lehenago da"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:34
|
||||
msgid "is after"
|
||||
msgstr ""
|
||||
msgstr "ondoren da"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:40
|
||||
msgid "="
|
||||
msgstr ""
|
||||
msgstr "="
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:99
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
msgstr "Produktua"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:103
|
||||
msgid "Product variation"
|
||||
msgstr ""
|
||||
msgstr "Produktuen aniztasuna"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:107
|
||||
msgid "Gate"
|
||||
msgstr ""
|
||||
msgstr "Atea"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:111
|
||||
msgid "Current date and time"
|
||||
msgstr ""
|
||||
msgstr "Uneko data eta ordua"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:115
|
||||
msgid "Current day of the week (1 = Monday, 7 = Sunday)"
|
||||
msgstr ""
|
||||
msgstr "Asteko uneko eguna (1 = astelehena, 7 = igandea)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:119
|
||||
msgid "Current entry status"
|
||||
msgstr ""
|
||||
msgstr "Egungo sarrera-egoera"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:123
|
||||
msgid "Number of previous entries"
|
||||
msgstr ""
|
||||
msgstr "Aurreko sarreren kopurua"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:127
|
||||
msgid "Number of previous entries since midnight"
|
||||
msgstr ""
|
||||
msgstr "Aurreko sarrera kopurua gauerditik aurrera"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:131
|
||||
msgid "Number of previous entries since"
|
||||
msgstr ""
|
||||
msgstr "Aurreko sarrera-kopurua, orduz geroztik"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:135
|
||||
msgid "Number of previous entries before"
|
||||
msgstr ""
|
||||
msgstr "Aurreko sarreren kopurua"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:139
|
||||
msgid "Number of days with a previous entry"
|
||||
msgstr ""
|
||||
msgstr "Aurreko sarrera bat duten egunen kopurua"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:143
|
||||
msgid "Number of days with a previous entry since"
|
||||
@@ -625,7 +638,7 @@ msgstr ""
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:493
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
msgstr "Guztiak"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:494
|
||||
msgid "None"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2023-09-07 03:00+0000\n"
|
||||
"Last-Translator: Tuomas Savela <pupp3@icloud.com>\n"
|
||||
"Language-Team: Finnish <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.18.2\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Englanti"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Saksa"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -403,24 +403,24 @@ msgid ""
|
||||
msgstr ""
|
||||
"Sovellukselle \"{application_name}\" on sallittu pääsy käyttäjätietoihisi."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Et voi luoda laskua tälle tilaukselle."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Tälle tilaukselle on jo olemassa lasku."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Sähköpostin lähettämisessä tapahtui virhe. Ole hyvä ja yritä myöhemmin "
|
||||
"uudelleen."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Jokin valituista tuotteista ei ole saatavilla tässä maassa."
|
||||
@@ -1664,6 +1664,8 @@ msgstr "Aktiivinen"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2732,6 +2734,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3858,10 +3863,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4935,6 +4939,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5321,6 +5328,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variaatiot"
|
||||
|
||||
@@ -9081,9 +9089,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12664,6 +12672,10 @@ msgstr "Loppupäivämäärä"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15717,6 +15729,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -16077,6 +16091,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -16127,6 +16142,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -16472,6 +16488,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -16480,6 +16497,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -17460,8 +17478,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -23477,8 +23495,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -25043,17 +25063,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -25064,6 +25075,165 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Kaikki maksunvälittäjät"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Variations"
|
||||
msgid "All variations"
|
||||
msgstr "Variaatiot"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Uusi tilaus tehty"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Merkitse tilaus maksetuksi"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Myyntikanavat"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variation"
|
||||
msgid "All products and variations"
|
||||
msgstr "Tuotevariaatio"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Maksutapa"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Delete vouchers"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Poista kupongit"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Sähköpostiosoite päivitetty."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Sähköpostiosoite päivitetty."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Sähköpostiosoite päivitetty."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Create a new user"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Luo uusi käyttäjä"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Cancellations"
|
||||
msgid "Conditions"
|
||||
msgstr "Peruutukset"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete vouchers"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Poista kupongit"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the property?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Oletko varma, että haluat poistaa ominaisuuden?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Ticket check-in reverted"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Lipun lunastus peruutettu"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Delete vouchers"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Poista kupongit"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new voucher"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Luo uusi kuponki"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Maksutapa"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -27407,10 +27577,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Käytä pohjana uusille kupongeille"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -27485,14 +27651,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Jonotuslistalla alkaen"
|
||||
msgstr[1] "Jonotuslistalla alkaen"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-06-18 20:00+0000\n"
|
||||
"Last-Translator: simonD <simon.dalvy@gmail.com>\n"
|
||||
"Language-Team: French <https://translate.pretix.eu/projects/pretix/pretix/fr/"
|
||||
@@ -15,119 +15,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.5.5\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Anglais"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Allemand"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Allemand (Du)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabe"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chinois (simplifié)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chinois (traditionnel)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tchèque"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Danois"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Néerlandais"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Néerlandais (Du)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Français"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finois"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galicien"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grec"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonésien"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italien"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Letton"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Norvégien Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polonais"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugais (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugais (Brésil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Roumain"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russe"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Espagnol"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turc"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukrainien"
|
||||
|
||||
@@ -406,22 +406,22 @@ msgstr ""
|
||||
"L'appareil d'authentification à deux facteurs \"{application_name}\" a été "
|
||||
"supprimé de votre compte."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Vous ne pouvez pas générer de facture pour cette commande."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Une facture existe déjà pour cet ordre."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Il y a eu une erreur d'envoi du mail. Veuillez réessayer plus tard."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Le produit sélectionné n'est pas disponible dans le pays séléctionné."
|
||||
@@ -1654,6 +1654,8 @@ msgstr "Actif"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Canaux de vente"
|
||||
|
||||
@@ -2723,6 +2725,9 @@ msgstr "Par défaut, l'heure du rapport."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3893,16 +3898,10 @@ msgstr "Canaux de vente pour s'enregistrer automatiquement"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Tous les articles de cette liste d'enregistrement seront automatiquement "
|
||||
"marqués comme enregistrés lorsqu'ils seront achetés via l'un des canaux de "
|
||||
"vente sélectionnés. Cette option peut être utile lorsque les billets vendus "
|
||||
"au guichet ne sont pas revérifiés avant l'entrée et doivent être considérés "
|
||||
"comme validés directement lors de l'achat."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5127,6 +5126,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produits"
|
||||
@@ -5555,6 +5557,7 @@ msgid "Item"
|
||||
msgstr "Article"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variantes"
|
||||
|
||||
@@ -9909,9 +9912,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13969,6 +13972,10 @@ msgstr "Date de fin"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17239,6 +17246,8 @@ msgstr "Définir un nouveau mot de passe"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17632,6 +17641,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17682,6 +17692,7 @@ msgstr "Annuler"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18060,6 +18071,7 @@ msgid "Connected devices"
|
||||
msgstr "Appareils connectés"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Enregistrement automatisé"
|
||||
|
||||
@@ -18068,6 +18080,7 @@ msgstr "Enregistrement automatisé"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19215,8 +19228,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25938,8 +25951,10 @@ msgstr "La nouvelle liste d'enregistrement a été créée."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -27707,17 +27722,8 @@ msgstr "Domaine connu"
|
||||
msgid "Known domains"
|
||||
msgstr "Domaines connus"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27728,6 +27734,175 @@ msgstr "Badges"
|
||||
msgid "the pretix team"
|
||||
msgstr "l'équipe pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Tous les fournisseurs de paiement"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Toutes les actions"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Nouvelle commande passée"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Marquer la commande comme payée"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Si vous laissez ce champ vide, le billet sera valable à partir du moment de "
|
||||
"l'achat."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canal de vente"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Variantes de produit"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Activer le mode de paiement"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Enregistrement automatisé"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Une règle d’e-mail a été créée"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Une règle d’e-mail a été mise à jour"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Une règle d’e-mail a été supprimée"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Règle d’enregistrement personnalisée"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Condition"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Supprimer la liste d'enregistrement"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Êtes-vous sûr de vouloir supprimer la porte ?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Règle d’enregistrement personnalisée"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Règle d’enregistrement personnalisée"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Vous n'avez pas encore créé de règles."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Créer une nouvelle liste d'enregistrement"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Mode de paiement"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Votre règle a été créée."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "La règle sélectionnée a été supprimée."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30333,10 +30508,6 @@ msgstr "Inspecter les heures planifiées"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Utiliser comme modèle pour une nouvelle date"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Vous n'avez pas encore créé de règles."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -30420,14 +30591,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "%(number)s Inscription sur la liste d’attente"
|
||||
msgstr[1] "%(number)s Entrées sur la liste d’attente"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Votre règle a été créée."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "La règle sélectionnée a été supprimée."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -34755,6 +34918,18 @@ msgstr "Accès en écriture"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Tous les articles de cette liste d'enregistrement seront automatiquement "
|
||||
#~ "marqués comme enregistrés lorsqu'ils seront achetés via l'un des canaux "
|
||||
#~ "de vente sélectionnés. Cette option peut être utile lorsque les billets "
|
||||
#~ "vendus au guichet ne sont pas revérifiés avant l'entrée et doivent être "
|
||||
#~ "considérés comme validés directement lors de l'achat."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "canal de vente inconnu."
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"PO-Revision-Date: 2024-07-26 11:54+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-07-30 08:36+0000\n"
|
||||
"Last-Translator: Ismael Menéndez Fernández <ismael.menendez@balidea.com>\n"
|
||||
"Language-Team: Galician <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
"gl/>\n"
|
||||
@@ -19,137 +19,137 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
#, fuzzy
|
||||
msgid "English"
|
||||
msgstr "Inglés"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
#, fuzzy
|
||||
msgid "German"
|
||||
msgstr "Alemán"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
#, fuzzy
|
||||
msgid "German (informal)"
|
||||
msgstr "Alemán (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
#, fuzzy
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chino (simplificado)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
#, fuzzy
|
||||
msgid "Danish"
|
||||
msgstr "Danés"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
#, fuzzy
|
||||
msgid "Dutch"
|
||||
msgstr "Holandés"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
#, fuzzy
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Holandés (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
#, fuzzy
|
||||
msgid "French"
|
||||
msgstr "Francés"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
#, fuzzy
|
||||
msgid "Finnish"
|
||||
msgstr "Danés"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
#, fuzzy
|
||||
msgid "Greek"
|
||||
msgstr "Griego"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
#, fuzzy
|
||||
msgid "Italian"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
#, fuzzy
|
||||
msgid "Latvian"
|
||||
msgstr "Letón"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
#, fuzzy
|
||||
msgid "Polish"
|
||||
msgstr "Inglés"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
#, fuzzy
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugués (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
#, fuzzy
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugués (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
#, fuzzy
|
||||
msgid "Russian"
|
||||
msgstr "Ruso"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
#, fuzzy
|
||||
msgid "Spanish"
|
||||
msgstr "Español"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
#, fuzzy
|
||||
msgid "Turkish"
|
||||
msgstr "Turko"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -432,23 +432,23 @@ msgid ""
|
||||
msgstr ""
|
||||
"A aplicación \"{application_name}\" autorizouse para acceder á túa conta."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Non se pode xerar unha factura para este pedido."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Xa existe unha factura para este pedido."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Aconteceu un erro ao enviar o correo. Por favor, inténteo de novo máis tarde."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Un dos produtos escollidos non está dispoñible no país elixido."
|
||||
@@ -1730,6 +1730,8 @@ msgstr "Activo"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
#, fuzzy
|
||||
msgid "Sales channels"
|
||||
msgstr "Canales de ventas"
|
||||
@@ -2838,6 +2840,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -4080,10 +4085,9 @@ msgstr "Canales de venta a los que registrarse automáticamente"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -5308,6 +5312,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produtos"
|
||||
@@ -5787,6 +5794,7 @@ msgid "Item"
|
||||
msgstr "Item"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
#, fuzzy
|
||||
msgid "Variations"
|
||||
msgstr "Variaciones"
|
||||
@@ -10325,9 +10333,9 @@ msgstr "Número máximo de artículos por pedido"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -11392,6 +11400,33 @@ msgid ""
|
||||
"Best regards, \n"
|
||||
"Your {event} team"
|
||||
msgstr ""
|
||||
"Hola,\n"
|
||||
"\n"
|
||||
"presentácheste á lista de espera para {event},\n"
|
||||
"para o produto {product}.\n"
|
||||
"\n"
|
||||
"¡Xa temos unha entrada lista para ti! Podes canxealo na nosa billeteira\n"
|
||||
"dentro das próximas {hours} horas ingresando o seguinte código de cupón:\n"
|
||||
"\n"
|
||||
"{code}\n"
|
||||
"\n"
|
||||
"Alternativamente, podes simplemente facer clic na seguinte ligazón:\n"
|
||||
"\n"
|
||||
"{url}\n"
|
||||
"\n"
|
||||
"¡Ten en conta que esta ligazón só é válida dentro das próximas {hours} "
|
||||
"horas!\n"
|
||||
"Reasignaremos a entrada á seguinte persoa na lista se non canxeas o bono "
|
||||
"dentro dese prazo.\n"
|
||||
"\n"
|
||||
"Se xa NON necesitas unha entrada, rogámosche que fagas clic na seguinte "
|
||||
"ligazón para informarnos. Deste xeito poderemos enviar a entrada o máis "
|
||||
"rápido posible á seguinte persoa na lista de espera:\n"
|
||||
"\n"
|
||||
"{url_remove}\n"
|
||||
"\n"
|
||||
"Atentamente,\n"
|
||||
"O teu equipo de {event}"
|
||||
|
||||
#: pretix/base/settings.py:2484
|
||||
#, fuzzy, python-brace-format
|
||||
@@ -14505,6 +14540,10 @@ msgstr "Fecha de fin"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -18027,6 +18066,8 @@ msgstr "Establecer nueva contraseña"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -18440,6 +18481,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -18490,6 +18532,7 @@ msgstr "Cancelar"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18879,6 +18922,7 @@ msgid "Connected devices"
|
||||
msgstr "Dispositivos conectados"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
#, fuzzy
|
||||
msgid "Automated check-in"
|
||||
msgstr "No chequeado"
|
||||
@@ -18888,6 +18932,7 @@ msgstr "No chequeado"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
#, fuzzy
|
||||
@@ -20050,8 +20095,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -27197,8 +27242,10 @@ msgstr "Se ha creado la nueva lista de registro."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Non puidemos gardar os teus cambios. Mira abaixo para detalles."
|
||||
@@ -29079,18 +29126,8 @@ msgstr "Dominio conocido"
|
||||
msgid "Known domains"
|
||||
msgstr "Dominios conocidos"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
#, fuzzy
|
||||
msgid "Badges"
|
||||
msgstr "Insignias"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -29102,6 +29139,157 @@ msgstr "Insignias"
|
||||
msgid "the pretix team"
|
||||
msgstr "el equipo de pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Todos os provedores de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
msgid "All variations"
|
||||
msgstr "Todas las acciones"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Novo pedido realizado."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
msgid "After order was paid"
|
||||
msgstr "Marcar orden como pagada"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canle de vendas"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
msgid "All products and variations"
|
||||
msgstr "Variaciones de los productos"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
msgid "All payment methods"
|
||||
msgstr "Habilitar método de pago"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
msgid "Auto check-in"
|
||||
msgstr "No chequeado"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Se ha suprimido la norma fiscal."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Se ha suprimido la norma fiscal."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Se ha suprimido la norma fiscal."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "No chequeado"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
msgid "Conditions"
|
||||
msgstr "Confirmaciones"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Borrar lista de registro"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "¿Estás seguro de que quieres borrar el equipo?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "No chequeado"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "No chequeado"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Aún no ha creado ninguna regla de impuestos."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Crear una nueva lista de registro"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Método de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Se ha creado el usuario."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Se ha borrado la regla fiscal seleccionada."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
#, fuzzy
|
||||
msgid "Badges"
|
||||
msgstr "Insignias"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -31810,11 +31998,6 @@ msgstr "Entrada reducida"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Usar como plantilla para una nueva fecha"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Aún no ha creado ninguna regla de impuestos."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
#, fuzzy
|
||||
@@ -31895,16 +32078,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Entrada á listaxe de agarda"
|
||||
msgstr[1] "Entrada á listaxe de agarda"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Se ha creado el usuario."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Se ha borrado la regla fiscal seleccionada."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -35518,9 +35691,8 @@ msgstr "Habilitar modo de prueba"
|
||||
#: pretix/presale/templates/pretixpresale/event/voucher.html:34
|
||||
#: pretix/presale/templates/pretixpresale/event/voucher.html:36
|
||||
#: pretix/presale/templates/pretixpresale/event/voucher_form.html:9
|
||||
#, fuzzy
|
||||
msgid "Voucher redemption"
|
||||
msgstr "Canje de vales"
|
||||
msgstr "Canxe de vales"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/voucher.html:20
|
||||
#, fuzzy
|
||||
@@ -36315,16 +36487,13 @@ msgstr ""
|
||||
"actualmente disponible."
|
||||
|
||||
#: pretix/presale/views/waiting.py:141
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "We've added you to the waiting list. You will receive an email as soon as "
|
||||
#| "tickets get available again."
|
||||
#, python-brace-format
|
||||
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 ""
|
||||
"Engadímosche á lista de espera. Vostede recibirá un correo electrónico tan "
|
||||
"pronto como as entradas estean dispoñibles de novo."
|
||||
"Engadímosche á lista de espera. Vostede recibirá un correo electrónico a "
|
||||
"{email} tan pronto como as entradas estean dispoñibles de novo."
|
||||
|
||||
#: pretix/presale/views/waiting.py:169
|
||||
#, fuzzy
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
|
||||
"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,22 +381,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1593,6 +1593,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2628,6 +2630,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3728,10 +3733,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4739,6 +4743,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5119,6 +5126,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8803,9 +8811,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12127,6 +12135,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15057,6 +15069,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15407,6 +15421,7 @@ msgstr[3] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15457,6 +15472,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15800,6 +15816,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15808,6 +15825,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16757,8 +16775,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22587,8 +22605,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24128,17 +24148,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24149,6 +24160,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26418,10 +26553,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26495,14 +26626,6 @@ msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
msgstr[3] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-01-31 04:00+0000\n"
|
||||
"Last-Translator: Pavle Ergović <pavleergovic@gmail.com>\n"
|
||||
"Language-Team: Croatian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.3.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Engleski"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Njemački"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -382,22 +382,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1594,6 +1594,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2629,6 +2631,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3729,10 +3734,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4740,6 +4744,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5120,6 +5127,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8795,9 +8803,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12119,6 +12127,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15049,6 +15061,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15398,6 +15412,7 @@ msgstr[2] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15448,6 +15463,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15791,6 +15807,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15799,6 +15816,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16748,8 +16766,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22575,8 +22593,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24112,17 +24132,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24133,6 +24144,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26402,10 +26537,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26478,14 +26609,6 @@ msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-05-20 20:00+0000\n"
|
||||
"Last-Translator: Krisztián Henrik Papp <pkh@henky.me>\n"
|
||||
"Language-Team: Hungarian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.5.5\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "angol"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "német"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "német (informális)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "arab"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "kínai (egyszerűsített)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "kínai (tradicionális)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "cseh"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "dán"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "holland"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "holland (informális)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "francia"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "finn"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "galíciai"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "görög"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "indonéz"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "olasz"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "lett"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "norvég bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "lengyel"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "portugál (Portugália)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "portugál (Brazília)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "román"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "orosz"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "spanyol"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "török"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "ukrán"
|
||||
|
||||
@@ -394,22 +394,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
#, fuzzy
|
||||
#| msgid "The product \"{}\" is not assigned to a quota."
|
||||
@@ -1652,6 +1652,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2721,6 +2723,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3843,10 +3848,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4899,6 +4903,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5291,6 +5298,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -9036,9 +9044,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12417,6 +12425,10 @@ msgstr "Eseménylista"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15507,6 +15519,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15874,6 +15888,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15924,6 +15939,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -16269,6 +16285,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -16277,6 +16294,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -17238,8 +17256,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -23183,8 +23201,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24780,17 +24800,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24801,6 +24812,162 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Redirection URIs"
|
||||
msgid "All variations"
|
||||
msgstr "Átirányítási URI-k"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "After order was placed"
|
||||
msgstr "A kiválasztott \"{seat}\" ülés nem elérhető."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Unknown sales channel."
|
||||
msgid "All sales channels"
|
||||
msgstr "Ismeretlen eladási csatorna."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Event list"
|
||||
msgid "All payment methods"
|
||||
msgstr "Eseménylista"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Paid orders"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Kifizetett megrendelések"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "A kiválasztott \"{seat}\" ülés nem elérhető."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "A kiválasztott \"{seat}\" ülés nem elérhető."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "A kiválasztott \"{seat}\" ülés nem elérhető."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Paid orders"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Kifizetett megrendelések"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Past events"
|
||||
msgid "Conditions"
|
||||
msgstr "Elmúlt események"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Paid orders"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Kifizetett megrendelések"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Paid orders"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Kifizetett megrendelések"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Paid orders"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Kifizetett megrendelések"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Presale not started"
|
||||
msgid "Payment methods"
|
||||
msgstr "Elővétel nem kezdődött el"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "A kiválasztott \"{seat}\" ülés nem elérhető."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "A kiválasztott \"{seat}\" ülés nem elérhető."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -27138,10 +27305,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Kifizetett megrendelések"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -27213,18 +27376,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "A kiválasztott \"{seat}\" ülés nem elérhető."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "A kiválasztott \"{seat}\" ülés nem elérhető."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2023-11-18 15:00+0000\n"
|
||||
"Last-Translator: liimee <git.taaa@fedora.email>\n"
|
||||
"Language-Team: Indonesian <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.1.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Inggris"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Jerman"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Jerman (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arab"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Cina (disederhanakan)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Cina (tradisional)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Ceko"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Denmark"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Belanda"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Belanda (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Perancis"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandia"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galicia"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Yunani"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italia"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Latvia"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polandia"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugis (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugis (Brazil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Romania"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Rusia"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spanyol"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turki"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukraina"
|
||||
|
||||
@@ -407,22 +407,22 @@ msgid ""
|
||||
msgstr ""
|
||||
"Aplikasi \"{application_name}\" telah diotorisasi untuk mengakses akun kamu."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Anda tidak dapat membuat faktur untuk pesanan ini."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Faktur untuk pesanan ini sudah ada."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Terjadi kesalahan saat mengirim email. Silakan coba lagi nanti."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Salah satu produk yang dipilih tidak tersedia di negara yang dipilih."
|
||||
@@ -1647,6 +1647,8 @@ msgstr "Aktif"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Saluran penjualan"
|
||||
|
||||
@@ -2711,6 +2713,9 @@ msgstr "Default pada waktu laporan."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3870,15 +3875,10 @@ msgstr "Saluran penjualan untuk check in secara otomatis"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Semua item dalam daftar check-in ini akan secara otomatis ditandai sebagai "
|
||||
"check-in bila dibeli melalui salah satu saluran penjualan yang dipilih. Opsi "
|
||||
"ini dapat berguna ketika tiket yang dijual di box office tidak diperiksa "
|
||||
"lagi sebelum masuk dan harus dianggap sah langsung pada saat pembelian."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5074,6 +5074,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produk"
|
||||
@@ -5489,6 +5492,7 @@ msgid "Item"
|
||||
msgstr "Barang"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variasi"
|
||||
|
||||
@@ -9732,9 +9736,9 @@ msgstr "Jumlah maksimum entri per alamat email untuk produk yang sama"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13725,6 +13729,10 @@ msgstr "Tanggal akhir"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16958,6 +16966,8 @@ msgstr "Atur password baruTetapkan kata sandi baru"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17347,6 +17357,7 @@ msgstr[0] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17397,6 +17408,7 @@ msgstr "Membatalkan"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17770,6 +17782,7 @@ msgid "Connected devices"
|
||||
msgstr "Perangkat yang terhubung"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Check-in otomatis"
|
||||
|
||||
@@ -17778,6 +17791,7 @@ msgstr "Check-in otomatis"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -18911,8 +18925,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25557,8 +25571,10 @@ msgstr "Daftar check-in baru telah dibuat."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -27287,17 +27303,8 @@ msgstr "Domain yang dikenal"
|
||||
msgid "Known domains"
|
||||
msgstr "Domain yang dikenal"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Lencana"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27308,6 +27315,173 @@ msgstr "Lencana"
|
||||
msgid "the pretix team"
|
||||
msgstr "tim pretiks"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Semua penyedia pembayaran"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Semua tindakan"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Pesanan baru ditempatkan"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Tandai pesanan sebagai sudah dibayar"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr "Jika Anda mengosongkannya, tiket akan berlaku mulai saat pembelian."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Kanal penjualan"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Variasi produk"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Aktifkan metode pembayaran"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Check-in otomatis"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Aturan email telah dibuat"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Aturan email telah diperbarui"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Aturan email telah dihapus"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Aturan check-in khusus"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Kondisi"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Hapus daftar check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Apakah kamu yakin ingin menghapus gerbangnya?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Aturan check-in khusus"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Aturan check-in khusus"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Anda belum membuat aturan apa pun."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Buat daftar check-in baru"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Cara Pembayaran"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Aturan kamu telah dibuat."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Aturan yang dipilih telah dihapus."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Lencana"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -29864,10 +30038,6 @@ msgstr "Periksa waktu yang dijadwalkan"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Gunakan sebagai templat untuk tanggal baru"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Anda belum membuat aturan apa pun."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -29947,14 +30117,6 @@ msgid "%(number)s waiting list entry"
|
||||
msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "%(number)s entri daftar tunggu"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Aturan kamu telah dibuat."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Aturan yang dipilih telah dihapus."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -34230,6 +34392,18 @@ msgstr "Akses tulis"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Semua item dalam daftar check-in ini akan secara otomatis ditandai "
|
||||
#~ "sebagai check-in bila dibeli melalui salah satu saluran penjualan yang "
|
||||
#~ "dipilih. Opsi ini dapat berguna ketika tiket yang dijual di box office "
|
||||
#~ "tidak diperiksa lagi sebelum masuk dan harus dianggap sah langsung pada "
|
||||
#~ "saat pembelian."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Saluran penjualan tidak dikenal."
|
||||
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"PO-Revision-Date: 2024-02-21 00:00+0000\n"
|
||||
"Last-Translator: Marco Addario <marco74@gmail.com>\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-08-22 15:00+0000\n"
|
||||
"Last-Translator: Michelangelo <michelangelo.morrillo@gmail.com>\n"
|
||||
"Language-Team: Italian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
"it/>\n"
|
||||
"Language: it\n"
|
||||
@@ -17,121 +17,121 @@ 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.4\n"
|
||||
"X-Generator: Weblate 5.7\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Inglese"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Tedesco"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Tedesco (informale)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabo"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr "Catalano"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Cinese (semplificato)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Cinese (tradizionale)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Ceco"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Danese"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Olandese"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Olandese (informale)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francese"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandese"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galiziano"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Greco"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesiano"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Lettone"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Norvegese Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polacco"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portoghese (Portogallo)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portoghese (Brasile)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumeno"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russo"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr "Svedese"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spagnolo"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turco"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ucraino"
|
||||
|
||||
@@ -409,23 +409,23 @@ msgstr ""
|
||||
"L'applicazione \"{application_name}\" ha ricevuto l'autorizzazione di "
|
||||
"accedere al tuo account."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Non puoi creare una fattura per questo ordine."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Esiste già una fattura per questo ordine."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Si è verificato un errore durante l'invio della mail. Riprova più tardi."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Uno the prodotti selezionati non è disponibile nel paese selezionato."
|
||||
@@ -1654,6 +1654,8 @@ msgstr "Attivo"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Canali di vendita"
|
||||
|
||||
@@ -2718,6 +2720,9 @@ msgstr "Valori predefiniti al momento della generazione del report."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3875,15 +3880,10 @@ msgstr "Canali di vendita per check-in automatico"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Tutti gli oggetti presenti in questa lista di check-in saranno "
|
||||
"automaticamente selezionati come verificati al momento della vendita "
|
||||
"attraverso i canali di vendita selezionati. Questa opzione è utile per i "
|
||||
"biglietti venduti al botteghino e che non devono essere nuovamente validati."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -4965,6 +4965,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5355,6 +5358,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Varianti"
|
||||
|
||||
@@ -9152,9 +9156,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12823,6 +12827,10 @@ msgstr "Data di Fine"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15904,6 +15912,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -16269,6 +16279,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -16319,6 +16330,7 @@ msgstr "Annulla"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -16665,6 +16677,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -16673,6 +16686,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -17652,8 +17666,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -23660,8 +23674,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Non abbiamo potuto salvare le tue modifiche. Leggi i dettagli sotto."
|
||||
@@ -25265,17 +25281,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -25286,6 +25293,165 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Tutti i servizi di pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Variations"
|
||||
msgid "All variations"
|
||||
msgstr "Varianti"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Nuovo ordine inviato"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Order marked as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Ordine contrassegnato come pagato"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Se lo lasci vuoto, il ticket sarà valido a partire dalla data di vendita."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canali di vendita"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Varianti prodotto"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Hide payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Nascondi metodo di pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
msgid "Auto check-in"
|
||||
msgstr "Filtra per stato"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Ordine modificato"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Ordine modificato"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Ordine modificato"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Crea un nuovo organizzatore"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
msgid "Conditions"
|
||||
msgstr "Conferme"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Filtra per stato"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to disconnect your Stripe account?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Vuoi veramente disconnettere il tuo account Stripe?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Filtra per stato"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Filtra per stato"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Crea un nuovo organizzatore"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Metodo di pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
msgid "Your rule has been created."
|
||||
msgstr "La data dell'evento ès tata creata."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Il posto selezionato {seat} non è disponibile."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -27721,10 +27887,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Crea un nuovo organizzatore"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -27798,16 +27960,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Abilita lista d'attesa"
|
||||
msgstr[1] "Abilita lista d'attesa"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
msgid "Your rule has been created."
|
||||
msgstr "La data dell'evento ès tata creata."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Il posto selezionato {seat} non è disponibile."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -31850,6 +32002,18 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Tutti gli oggetti presenti in questa lista di check-in saranno "
|
||||
#~ "automaticamente selezionati come verificati al momento della vendita "
|
||||
#~ "attraverso i canali di vendita selezionati. Questa opzione è utile per i "
|
||||
#~ "biglietti venduti al botteghino e che non devono essere nuovamente "
|
||||
#~ "validati."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Canale di vendita."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-05-09 19:00+0000\n"
|
||||
"Last-Translator: Ryo <saremba@rami.io>\n"
|
||||
"Language-Team: Japanese <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -19,121 +19,121 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.4.3\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "英語"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "ドイツ語"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "アラビア語"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
#, fuzzy
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "中国語(簡体字)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "中国語(繁体字)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "チェコ"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
#, fuzzy
|
||||
msgid "Danish"
|
||||
msgstr "デンマーク語"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "オランダ語"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "フランス語"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "フィンランド語"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "ガリシア語"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "ギリシャ語"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "インドネシア語"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "イタリア語"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "ラトビア語"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "ノルウェー語 (ブークモール)"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "ポーランド語"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "ポルトガル語 (ポルトガル)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "ポルトガル語 (ブラジル)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "ルーマニア語"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "ロシア語"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "スペイン語"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "トルコ語"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "ウクライナ語"
|
||||
|
||||
@@ -397,22 +397,22 @@ msgstr ""
|
||||
"申請者 \"{application_name}\"はあなたのアカウントへのアクセス権を持っていま"
|
||||
"す。"
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "この注文には請求書を発行することができません。"
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "この注文の請求書は発行済です。"
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "メールの送信に失敗しました。再送信してください。"
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "選択された国では、選択された商品のお取り扱いはございません。"
|
||||
@@ -1664,6 +1664,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2734,6 +2736,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3836,10 +3841,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4874,6 +4878,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5256,6 +5263,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8949,9 +8957,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12300,6 +12308,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15315,6 +15327,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15667,6 +15681,7 @@ msgstr[0] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15717,6 +15732,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -16060,6 +16076,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -16068,6 +16085,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -17019,8 +17037,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22896,8 +22914,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24450,17 +24470,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24471,6 +24482,153 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "全てのお支払方法"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "新しい注文が入りました"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Order marked as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "支払い済みと表示された商品"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Unknown sales channel."
|
||||
msgid "All sales channels"
|
||||
msgstr "不明な販路。"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "All payment methods"
|
||||
msgstr "全てのお支払方法"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Ticket checked in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "チケットのチェックインが完了しました"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Only include orders created on or after this date."
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "この日以降に作成された注文に限る。"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Location"
|
||||
msgid "Conditions"
|
||||
msgstr "イベント開催地"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Ticket checked in"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "チケットのチェックインが完了しました"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Ticket check-in reverted"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "チケットのチェックインが取り消されました"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Ticket checked in"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "チケットのチェックインが完了しました"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
msgid "Payment methods"
|
||||
msgstr "支払い済みの注文"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26775,10 +26933,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26850,14 +27004,6 @@ msgid "%(number)s waiting list entry"
|
||||
msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2023-04-06 02:00+0000\n"
|
||||
"Last-Translator: 전윤수 <jeonyunsoo123@gmail.com>\n"
|
||||
"Language-Team: Korean <https://translate.pretix.eu/projects/pretix/pretix/ko/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.16.4\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -383,22 +383,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1595,6 +1595,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2630,6 +2632,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3730,10 +3735,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4741,6 +4745,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5121,6 +5128,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8787,9 +8795,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12111,6 +12119,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15041,6 +15053,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15388,6 +15402,7 @@ msgstr[0] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15438,6 +15453,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15781,6 +15797,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15789,6 +15806,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16738,8 +16756,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22569,8 +22587,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24106,17 +24126,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24127,6 +24138,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26399,10 +26534,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26474,14 +26605,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
|
||||
"1 : 2);\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,22 +381,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1593,6 +1593,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2628,6 +2630,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3728,10 +3733,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4739,6 +4743,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5119,6 +5126,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8785,9 +8793,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12109,6 +12117,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15039,6 +15051,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15388,6 +15402,7 @@ msgstr[2] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15438,6 +15453,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15781,6 +15797,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15789,6 +15806,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16738,8 +16756,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22565,8 +22583,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24102,17 +24122,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24123,6 +24134,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26392,10 +26527,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26467,14 +26598,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2023-11-03 22:00+0000\n"
|
||||
"Last-Translator: Jāzeps Benjamins Baško <jazeps.basko@gmail.com>\n"
|
||||
"Language-Team: Latvian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.1.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Angļu"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Vācu"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Vācu (neformālā)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arābu"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Ķīniešu (vienkāršota)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Ķīniešu (tradicionālā)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Čehu"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dāņu"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Nīderlandiešu"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Nīderlandiešu (neformālā)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Franču"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Somu"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galisiešu"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grieķu"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonēziešu"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Itāļu"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Latviešu"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Poļu"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugāļu"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugāļu (Brazīlija)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumāņu"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Krievu"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spāņu"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turku"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukraiņu"
|
||||
|
||||
@@ -397,22 +397,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr "Aplikācijai \"{application_name}\" ir atļauts piekļūt jūsu profilam."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Šim pasūtījumam nav iespējams sastādīt rēķinu."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Šim pasūtījumam jau ir rēķins."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Sūtot e-pastu radās kļūda. Lūdzu vēlāk mēginiet vēlreiz."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Viens no atlasītajiem produktiem izvēlētajā valstī nav pieejams."
|
||||
@@ -1675,6 +1675,8 @@ msgstr "Aktīvs"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2759,6 +2761,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3911,16 +3916,10 @@ msgstr "Tirdzniecības kanāli, lai automātiski iereģistrētos"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Visi vienumi šajā reģistrēšanās sarakstā tiks automātiski marķētas kā "
|
||||
"reģistrētas, ja tās tiek iegādātas, izmantojot jebkuru no izvēlētajiem "
|
||||
"pārdošanas kanāliem. Šī opcija var būt noderīga, ja kasē pārdotās biļetes "
|
||||
"pirms iebraukšanas vēlreiz netiek pārbaudītas, un tās jāapstiprina pirkuma "
|
||||
"brīdī."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5109,6 +5108,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5518,6 +5520,7 @@ msgid "Item"
|
||||
msgstr "Vienība"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variācijas"
|
||||
|
||||
@@ -9560,9 +9563,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13105,6 +13108,10 @@ msgstr "Beigu datums"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16221,6 +16228,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -16597,6 +16606,7 @@ msgstr[2] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -16647,6 +16657,7 @@ msgstr "Atcelt"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -16994,6 +17005,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -17002,6 +17014,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -17973,8 +17986,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -24044,8 +24057,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Mēs nevarējām saglabāt jūsu veiktās izmaiņas. Skatīt zemāk detaļas."
|
||||
@@ -25636,17 +25651,8 @@ msgstr "Zināms domēns"
|
||||
msgid "Known domains"
|
||||
msgstr "Zināmi domēni"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -25657,6 +25663,171 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Visi maksājumu pakalpojumu sniedzēji"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Variations"
|
||||
msgid "All variations"
|
||||
msgstr "Variācijas"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Jauns pasūtījums ir veikts"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Order marked as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Pasūtījums atzīmēts, kā apmaksāts"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Pārdošanas kanāls"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Produktu variācijas"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Iespējot maksājuma veidu"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "All check-ins"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Visas reģistrācijas"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Tika izveidots jauns e-pasta noteikums"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "E-pasta noteikums tika aktualizēts"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "E-pasta noteikums tika dzēsts"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Date and time"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Datums un laiks"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Confirmations"
|
||||
msgid "Conditions"
|
||||
msgstr "Apstiprinājumi"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "All check-ins"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Visas reģistrācijas"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Vai esat pārliecināts/-a, ka vēlaties dzēst šo staciju?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "All check-ins"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Visas reģistrācijas"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "All check-ins"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Visas reģistrācijas"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Date and time"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Datums un laiks"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Maksājuma veids"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Jūsu noteikums tika izveidots."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "The selected event date is not active."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Atlasītais notikuma datums nav aktīvs."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -28157,10 +28328,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Datums un laiks"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -28241,17 +28408,6 @@ msgstr[0] "Gaidīšanas saraksta ieraksts"
|
||||
msgstr[1] "Gaidīšanas saraksta ieraksts"
|
||||
msgstr[2] "Gaidīšanas saraksta ieraksts"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Jūsu noteikums tika izveidots."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "The selected event date is not active."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Atlasītais notikuma datums nav aktīvs."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -32570,6 +32726,18 @@ msgstr "Rediģēšanas režīma piekļuve"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Visi vienumi šajā reģistrēšanās sarakstā tiks automātiski marķētas kā "
|
||||
#~ "reģistrētas, ja tās tiek iegādātas, izmantojot jebkuru no izvēlētajiem "
|
||||
#~ "pārdošanas kanāliem. Šī opcija var būt noderīga, ja kasē pārdotās biļetes "
|
||||
#~ "pirms iebraukšanas vēlreiz netiek pārbaudītas, un tās jāapstiprina "
|
||||
#~ "pirkuma brīdī."
|
||||
|
||||
#~ msgid "You cannot reorder items spanning different categories."
|
||||
#~ msgstr "Jūs nevarat mainīt vietām vienumus, kas pieder dažādām kategorijām."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -17,119 +17,119 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -379,22 +379,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1591,6 +1591,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2626,6 +2628,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3726,10 +3731,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4737,6 +4741,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5117,6 +5124,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8783,9 +8791,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12107,6 +12115,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15037,6 +15049,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15385,6 +15399,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15435,6 +15450,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15778,6 +15794,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15786,6 +15803,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16735,8 +16753,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22561,8 +22579,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24098,17 +24118,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24119,6 +24130,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26388,10 +26523,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26463,14 +26594,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-05-10 15:47+0000\n"
|
||||
"Last-Translator: Martin Gross <gross@rami.io>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.4.3\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Engelsk"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Tysk"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Tysk (uformelt)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabisk"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Kinesisk"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Kinesisk Tradisjonell"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tsjekkisk"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dansk"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Nederlandsk"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Nederlandsk (uformelt)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Français"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finsk"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galisisk"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Gresk"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesisk"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiensk"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Latvisk"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Norsk Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polsk"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugisisk (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugisisk (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Romanian"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russisk"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spansk"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Tyrkisk"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukrainsk"
|
||||
|
||||
@@ -402,22 +402,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr "Appen «{application_name}» har fått tilgang til kontoen din."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Du kan ikke genere en faktura for denne ordren."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "En faktura for denne ordren eksisterer allerede."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Det var en feil ved sending av e-post. Vennligst prøv igjen senere."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Ett av de valgte produktene er ikke tilgjengelig i det valgte landet."
|
||||
@@ -1642,6 +1642,8 @@ msgstr "Aktiv"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Salgskanaler"
|
||||
|
||||
@@ -2708,6 +2710,9 @@ msgstr "Standardverdiene er satt til tidspunktet for rapporten."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3860,16 +3865,10 @@ msgstr "Salgskanaler for automatisk innsjekking"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Alle elementer på denne innsjekkingslisten vil automatisk bli merket som "
|
||||
"sjekket inn når de blir kjøpt gjennom noen av de valgte salgskanalene. Denne "
|
||||
"muligheten kan være nyttig når billetter som selges i billettluka ikke "
|
||||
"sjekkes igjen før inngang, og bør betraktes som gyldige umiddelbart etter "
|
||||
"kjøpet."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5080,6 +5079,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produkter"
|
||||
@@ -5493,6 +5495,7 @@ msgid "Item"
|
||||
msgstr "Vare"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variasjoner"
|
||||
|
||||
@@ -9780,9 +9783,9 @@ msgstr "Maksimalt antall oppføringer per e-postadresse for samme produkt."
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13792,6 +13795,10 @@ msgstr "Sluttdato"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17057,6 +17064,8 @@ msgstr "Sett nytt passord"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17452,6 +17461,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17502,6 +17512,7 @@ msgstr "Avbryt"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17887,6 +17898,7 @@ msgid "Connected devices"
|
||||
msgstr "Tilkoblede enheter"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatisk innsjekking"
|
||||
|
||||
@@ -17895,6 +17907,7 @@ msgstr "Automatisk innsjekking"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19023,8 +19036,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25701,8 +25714,10 @@ msgstr "Den nye innsjekkingslisten er opprettet."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Vi kunne ikke lagre dine endringer. Se under for detaljer."
|
||||
@@ -27437,17 +27452,8 @@ msgstr "Kjent domene"
|
||||
msgid "Known domains"
|
||||
msgstr "Kjente domener"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Merker"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27458,6 +27464,176 @@ msgstr "Merker"
|
||||
msgid "the pretix team"
|
||||
msgstr "teamet til pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Alle betalingsleverandører"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Alle handlinger"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Ny ordre er lagt til"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Marker bestillingen som betalt."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Hvis du lar dette stå tomt, vil billetten være gyldig fra kjøpstidspunktet."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Salgskanal"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Produktvarianter"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Aktiver betalingsmetode"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Automatisk innsjekking"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Dine endringer er lagret."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Dine endringer er lagret."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "En e-postregel ble slettet."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Tilpasset innsjekkingsregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Tilstand"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Slett innsjekkingslisten."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Er du sikker på at du vil slette porten?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Tilpasset innsjekkingsregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Tilpasset innsjekkingsregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
"Beklager for misforståelsen. Jeg vil opprette regler for deg nå. Vennligst "
|
||||
"vent et øyeblikk."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Opprett en ny sjekkliste for innsjekking."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Betalingsmetode"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Dine endringer er lagret."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Regelen som ble valgt er slettet."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Merker"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30049,12 +30225,6 @@ msgstr "Undersøk planlagte tidspunkter."
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Bruk som mal for en ny dato"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
"Beklager for misforståelsen. Jeg vil opprette regler for deg nå. Vennligst "
|
||||
"vent et øyeblikk."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -30137,14 +30307,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "%(number)s ventelisteoppføring"
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Dine endringer er lagret."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Regelen som ble valgt er slettet."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -34491,6 +34653,18 @@ msgstr "Skriverettighet"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Alle elementer på denne innsjekkingslisten vil automatisk bli merket som "
|
||||
#~ "sjekket inn når de blir kjøpt gjennom noen av de valgte salgskanalene. "
|
||||
#~ "Denne muligheten kan være nyttig når billetter som selges i billettluka "
|
||||
#~ "ikke sjekkes igjen før inngang, og bør betraktes som gyldige umiddelbart "
|
||||
#~ "etter kjøpet."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Ukjent salgskanal."
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-07-11 02:00+0000\n"
|
||||
"Last-Translator: Dirk-jan mollema <dirkjan@outsidersecurity.nl>\n"
|
||||
"Language-Team: Dutch <https://translate.pretix.eu/projects/pretix/pretix/nl/"
|
||||
@@ -18,119 +18,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.6.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Engels"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Duits"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Duits (informeel)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabisch"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chinees (versimpeld)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chinees (traditioneel)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tsjechisch"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Deens"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Nederlands"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Nederlands (informeel)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Frans"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Fins"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Gallisch"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grieks"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesisch"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiaans"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Lets"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Noorse Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Pools"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugees (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugees (Brazilië)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Roemeens"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russisch"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spaans"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turks"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Oekraïens"
|
||||
|
||||
@@ -399,24 +399,24 @@ msgid ""
|
||||
msgstr ""
|
||||
"De applicatie \"{application_name}\" is toegang gegeven tot uw account."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "U kunt geen factuur genereren voor deze bestelling."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Er bestaat al een factuur voor deze bestelling."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Er is een fout opgetreden bij het verzenden van de e-mail. Probeer het later "
|
||||
"opnieuw."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1642,6 +1642,8 @@ msgstr "Actief"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Verkoopkanalen"
|
||||
|
||||
@@ -2704,6 +2706,9 @@ msgstr "Standaard wordt aanmaakdatum van het rapport gebruikt."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3870,16 +3875,10 @@ msgstr "Automatisch ingecheckte verkoopkanalen"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Alle items op deze inchecklijst zullen automatisch als ingecheckt worden "
|
||||
"gemarkeerd wanneer ze worden gekocht via een van de gekozen verkoopkanalen. "
|
||||
"Deze optie kan nuttig zijn wanneer tickets die aan de kassa worden verkocht "
|
||||
"niet opnieuw worden gecontroleerd en de tickets direct als gebruikt moeten "
|
||||
"worden beschouwd na de aankoop."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5080,6 +5079,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Producten"
|
||||
@@ -5499,6 +5501,7 @@ msgid "Item"
|
||||
msgstr "Item"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Varianten"
|
||||
|
||||
@@ -9950,9 +9953,9 @@ msgstr "Maximale aantal producten per bestelling"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14166,6 +14169,10 @@ msgstr "Einddatum"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17581,6 +17588,8 @@ msgstr "Stel nieuw wachtwoord in"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17988,6 +17997,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -18038,6 +18048,7 @@ msgstr "Annuleer"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18424,6 +18435,7 @@ msgid "Connected devices"
|
||||
msgstr "Verbonden apparaten"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatisch inchecken"
|
||||
|
||||
@@ -18432,6 +18444,7 @@ msgstr "Automatisch inchecken"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19593,8 +19606,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -26399,8 +26412,10 @@ msgstr "De nieuwe inchecklijst is aangemaakt."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "We konden uw wijzigingen niet opslaan. Zie hieronder voor details."
|
||||
@@ -28158,17 +28173,8 @@ msgstr "Bekend domein"
|
||||
msgid "Known domains"
|
||||
msgstr "Bekende domeinen"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -28179,6 +28185,173 @@ msgstr "Badges"
|
||||
msgid "the pretix team"
|
||||
msgstr "het pretix-team"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Alle betalingsproviders"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Alle acties"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Nieuwe bestelling geplaatst"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Markeer bestelling als betaald"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Als u dit leeg laat, wordt het ticket geldig vanaf het moment van aankoop."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Verkoopkanaal"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Productvarianten"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Betaalmethode inschakelen"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Automatisch inchecken"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "De e-mailregel is verwijderd"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "De e-mailregel is verwijderd"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "De e-mailregel is verwijderd"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Aangepaste incheckregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Confirmations"
|
||||
msgid "Conditions"
|
||||
msgstr "Bevestigingen"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Verwijder inchecklijst"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Weet u zeker dat u de toegangslocatie wilt verwijderen?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Aangepaste incheckregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Aangepaste incheckregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "U heeft nog geen regels gemaakt."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Maak een nieuwe inchecklijst"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Betalingsmethode"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Uw regel is aangemaakt."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "De gekozen regel is verwijderd."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30908,10 +31081,6 @@ msgstr "Type tijdsaangave"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Gebruik als sjabloon voor een nieuwe datum"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "U heeft nog geen regels gemaakt."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -31005,14 +31174,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Wachtlijstitem"
|
||||
msgstr[1] "Wachtlijstitem"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Uw regel is aangemaakt."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "De gekozen regel is verwijderd."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -35486,6 +35647,18 @@ msgstr "Schrijftoegang"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Alle items op deze inchecklijst zullen automatisch als ingecheckt worden "
|
||||
#~ "gemarkeerd wanneer ze worden gekocht via een van de gekozen "
|
||||
#~ "verkoopkanalen. Deze optie kan nuttig zijn wanneer tickets die aan de "
|
||||
#~ "kassa worden verkocht niet opnieuw worden gecontroleerd en de tickets "
|
||||
#~ "direct als gebruikt moeten worden beschouwd na de aankoop."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Onbekend verkoopkanaal."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-02-13 16:00+0000\n"
|
||||
"Last-Translator: Wessel Stam <info@wesselstam.nl>\n"
|
||||
"Language-Team: Dutch (informal) <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.3.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Engels"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Duits"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Duits (informeel)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabisch"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chinees (versimpeld)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chinees (traditioneel)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tsjechisch"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Deens"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Nederlands"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Nederlands (informeel)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Frans"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Fins"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galicisch"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grieks"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonesisch"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiaans"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Lets"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Noors Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Pools"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugees (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugees (Brazilië)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Roemeens"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russisch"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spaans"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turks"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Oekraïens"
|
||||
|
||||
@@ -411,24 +411,24 @@ msgid ""
|
||||
msgstr ""
|
||||
"De applicatie \"{application_name}\" is toegang gegeven tot jouw account."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Je kan geen factuur genereren voor deze bestelling."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Er bestaat al een factuur voor deze bestelling."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Er is een fout opgetreden bij het versturen van de e-mail. Probeer het later "
|
||||
"opnieuw."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1656,6 +1656,8 @@ msgstr "Actief"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Verkoopkanalen"
|
||||
|
||||
@@ -2731,6 +2733,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3908,16 +3913,10 @@ msgstr "Automatisch ingecheckte verkoopkanalen"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Alle items op deze inchecklijst zullen automatisch als ingecheckt worden "
|
||||
"gemarkeerd wanneer ze worden gekocht via een van de gekozen verkoopkanalen. "
|
||||
"Deze optie kan nuttig zijn wanneer kaartjes die aan de kassa worden verkocht "
|
||||
"niet opnieuw worden gecontroleerd en de kaartjes direct als gebruikt moeten "
|
||||
"worden beschouwd na de aankoop."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5135,6 +5134,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Producten"
|
||||
@@ -5575,6 +5577,7 @@ msgid "Item"
|
||||
msgstr "Item"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Varianten"
|
||||
|
||||
@@ -10011,9 +10014,9 @@ msgstr "Maximale aantal producten per bestelling"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14129,6 +14132,10 @@ msgstr "Einddatum"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17553,6 +17560,8 @@ msgstr "Stel nieuw wachtwoord in"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17941,6 +17950,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17991,6 +18001,7 @@ msgstr "Annuleren"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18386,6 +18397,7 @@ msgid "Connected devices"
|
||||
msgstr "Verbonden apparaten"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatisch inchecken"
|
||||
|
||||
@@ -18394,6 +18406,7 @@ msgstr "Automatisch inchecken"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19508,8 +19521,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -26312,8 +26325,10 @@ msgstr "De nieuwe inchecklijst is aangemaakt."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "We konden je wijzigingen niet opslaan. Zie hieronder voor details."
|
||||
@@ -28053,17 +28068,8 @@ msgstr "Bekend domein"
|
||||
msgid "Known domains"
|
||||
msgstr "Bekende domeinen"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -28074,6 +28080,175 @@ msgstr "Badges"
|
||||
msgid "the pretix team"
|
||||
msgstr "het pretix-team"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Alle betalingsproviders"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Alle acties"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Nieuwe bestelling geplaatst"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Markeer bestelling als betaald"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Verkoopkanaal"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Productvarianten"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Betaalmethode inschakelen"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Automatisch inchecken"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "De belastingregel is verwijderd."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "De belastingregel is verwijderd."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "De belastingregel is verwijderd."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Aangepaste incheckregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Staat"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Verwijder inchecklijst"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Weet je zeker dat je de toegangslocatie wilt verwijderen?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Aangepaste incheckregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Aangepaste incheckregel"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Je hebt nog geen belastingregels gemaakt."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Maak een nieuwe inchecklijst"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Betalingsmethode"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "De gebruiker is aangemaakt."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "De gekozen belastingregel is verwijderd."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Badges"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30789,12 +30964,6 @@ msgstr "Kaartje met korting"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Gebruik als sjabloon voor een nieuwe datum"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Je hebt nog geen belastingregels gemaakt."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
#, fuzzy
|
||||
@@ -30882,18 +31051,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Wachtlijstitem"
|
||||
msgstr[1] "Wachtlijstitem"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "De gebruiker is aangemaakt."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "De gekozen belastingregel is verwijderd."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -35443,6 +35600,18 @@ msgstr "Schrijftoegang"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Alle items op deze inchecklijst zullen automatisch als ingecheckt worden "
|
||||
#~ "gemarkeerd wanneer ze worden gekocht via een van de gekozen "
|
||||
#~ "verkoopkanalen. Deze optie kan nuttig zijn wanneer kaartjes die aan de "
|
||||
#~ "kassa worden verkocht niet opnieuw worden gecontroleerd en de kaartjes "
|
||||
#~ "direct als gebruikt moeten worden beschouwd na de aankoop."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Onbekend verkoopkanaal."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-07-01 16:00+0000\n"
|
||||
"Last-Translator: Anarion Dunedain <anarion80@gmail.com>\n"
|
||||
"Language-Team: Polish <https://translate.pretix.eu/projects/pretix/pretix/pl/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.6.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Angielski"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Niemiecki"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Niemiecki (nieformalny)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabski"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr "Kataloński"
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chiński (uproszczony)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chiński (tradycyjny)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Czeski"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Duński"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Holenderski"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Holenderski (nieformalny)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francuski"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Fiński"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galicyjski"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grecki"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonezyjski"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Włoski"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Litewski"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Norweski Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polski"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugalski (Portugalia)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugalski (Brazylia)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumuński"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Rosyjski"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr "Słowacki"
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr "Szwedzki"
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Hiszpański"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turecki"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukraiński"
|
||||
|
||||
@@ -403,23 +403,23 @@ msgid ""
|
||||
"account."
|
||||
msgstr "Aplikacja '{application_name}' uzyskała dostęp do Państwa konta."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Nie możesz wygenerować faktury dla tego zamówienia."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Faktura dla tego zamówienia już istnieje."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Wystąpił błąd podczas wysyłania wiadomości e-mail. Spróbuj ponownie później."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Jeden z wybranych produktów nie jest dostępny w wybranym kraju."
|
||||
@@ -1649,6 +1649,8 @@ msgstr "Aktywne"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Kanały sprzedaży"
|
||||
|
||||
@@ -2715,6 +2717,9 @@ msgstr "Domyślny czas raportu."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3864,16 +3869,10 @@ msgstr "Kanały sprzedaży do automatycznego sprawdzania biletów"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Wszystkie pozycje na tej liście odprawy zostaną automatycznie oznaczone jako "
|
||||
"odprawione przy zakupie za pośrednictwem dowolnego z wybranych kanałów "
|
||||
"sprzedaży. Opcja ta może być przydatna, gdy bilety sprzedawane w kasie nie "
|
||||
"są ponownie sprawdzane przed wejściem i powinny zostać uznane za "
|
||||
"zatwierdzone bezpośrednio przy zakupie."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5030,6 +5029,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produkty"
|
||||
@@ -5445,6 +5447,7 @@ msgid "Item"
|
||||
msgstr "Przedmiot"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Warianty"
|
||||
|
||||
@@ -9662,9 +9665,9 @@ msgstr "Maksymalna liczba zgłoszeń na adres e-mail dla tego samego produktu"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13651,6 +13654,10 @@ msgstr "Data zakończenia"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16876,6 +16883,8 @@ msgstr "Ustaw nowe hasło"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17252,6 +17261,7 @@ msgstr[2] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17302,6 +17312,7 @@ msgstr "Anuluj"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17673,6 +17684,7 @@ msgid "Connected devices"
|
||||
msgstr "Połączone urządzenia"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatyczna odprawa"
|
||||
|
||||
@@ -17681,6 +17693,7 @@ msgstr "Automatyczna odprawa"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -18823,8 +18836,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25384,8 +25397,10 @@ msgstr "Utworzono nową listę odpraw."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Nie mogliśmy zapisać Twoich zmian. Poniżej szczegoły."
|
||||
@@ -27118,17 +27133,8 @@ msgstr "Znana domena"
|
||||
msgid "Known domains"
|
||||
msgstr "Znane domeny"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Identyfikatory"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27139,6 +27145,172 @@ msgstr "Identyfikatory"
|
||||
msgid "the pretix team"
|
||||
msgstr "Zespół Pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Wszyscy dostawcy płatności"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Wszystkie działania"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Złożono zamówienie"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Oznacz zamówienie jako opłacone"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid "If you keep this empty, all input will be allowed."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
"Jeśli pozostawisz to pole puste, wszystkie dane wejściowe będą dozwolone."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Add sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Dodaj kanał sprzedaży"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Warianty produktu"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Aktywuj metodę płatności"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Automatyczna odprawa"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Utworzono regułę wiadomości e-mail"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Zaktualizowano regułę wiadomości e-mail"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Usunięto regułę wiadomości e-mail"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Niestandardowa reguła odprawy"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Stan"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Usuń listę odpraw"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Czy na pewno chcesz usunąć bramkę?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Niestandardowa reguła odprawy"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Niestandardowa reguła odprawy"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Nie stworzyłeś jeszcze żadnych zasad."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Utwórz nową listę odpraw"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Metoda płatności"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Twoja reguła została utworzona."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Wybrana reguła została usunięta."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Identyfikatory"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -29676,10 +29848,6 @@ msgstr "Sprawdź zaplanowane godziny"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Użyj jako szablonu dla nowej reguły"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Nie stworzyłeś jeszcze żadnych zasad."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -29767,14 +29935,6 @@ msgstr[0] "%(number)s wpis na liście oczekujących"
|
||||
msgstr[1] "%(number)s wpisy na liście oczekujących"
|
||||
msgstr[2] "%(number)s wpisów na liście oczekujących"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Twoja reguła została utworzona."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Wybrana reguła została usunięta."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -33998,6 +34158,18 @@ msgstr "Dostęp do zapisu"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Wszystkie pozycje na tej liście odprawy zostaną automatycznie oznaczone "
|
||||
#~ "jako odprawione przy zakupie za pośrednictwem dowolnego z wybranych "
|
||||
#~ "kanałów sprzedaży. Opcja ta może być przydatna, gdy bilety sprzedawane w "
|
||||
#~ "kasie nie są ponownie sprawdzane przed wejściem i powinny zostać uznane "
|
||||
#~ "za zatwierdzone bezpośrednio przy zakupie."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Nieznane kanały sprzedaży."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -18,119 +18,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -380,22 +380,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1592,6 +1592,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2627,6 +2629,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3727,10 +3732,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4738,6 +4742,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5118,6 +5125,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8793,9 +8801,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12117,6 +12125,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15047,6 +15059,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15396,6 +15410,7 @@ msgstr[2] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15446,6 +15461,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15789,6 +15805,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15797,6 +15814,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16746,8 +16764,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22576,8 +22594,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24116,17 +24136,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24137,6 +24148,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26411,10 +26546,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26488,14 +26619,6 @@ msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2021-08-12 21:00+0000\n"
|
||||
"Last-Translator: amandajurno <amandajurno@gmail.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 4.6\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Alemão"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Alemão (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francês"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandês"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grego"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polonês"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Português (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Português (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russo"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Espanhol"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turco"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -401,23 +401,23 @@ msgid ""
|
||||
"account."
|
||||
msgstr "A aplicação \"{application_name}\" foi autorizada a acessar sua conta."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Você não pode gerar uma fatura para este pedido."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Já existe uma fatura para este pedido."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Ocorreu um erro ao enviar o e-mail. Por favor, tente novamente mais tarde."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Um dos produtos selecionados não está disponível no país selecionado."
|
||||
@@ -1654,6 +1654,8 @@ msgstr "Ativo"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2717,6 +2719,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3819,10 +3824,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4851,6 +4855,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5234,6 +5241,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8940,9 +8948,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12291,6 +12299,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15288,6 +15300,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15640,6 +15654,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15690,6 +15705,7 @@ msgstr "Cancelar"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -16033,6 +16049,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -16041,6 +16058,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -17002,8 +17020,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22888,8 +22906,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Nós não pudemos salvar suas alterações. Veja detalhes abaixo."
|
||||
@@ -24443,17 +24463,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24464,6 +24475,150 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Todos provedores de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
msgid "All variations"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Novo pedido realizado"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Order marked as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Pedido marcado como pago"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canal de vendas"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
msgid "All payment methods"
|
||||
msgstr "Todos provedores de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
msgid "Auto check-in"
|
||||
msgstr "Deletar"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Only include orders created on or after this date."
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Incluir apenas pedidos criados a partir desta data."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
msgid "Conditions"
|
||||
msgstr "Posições"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Deletar"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Ticket check-in reverted"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Ingresso revertido"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Deletar"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Endereço"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
msgid "Payment methods"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26775,10 +26930,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26852,14 +27003,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-06-18 20:00+0000\n"
|
||||
"Last-Translator: \"L. Pereira\" <l@tia.mat.br>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.pretix.eu/projects/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.5.5\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Inglês"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Alemão"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Alemão (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Árabe"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chinês (simplificado)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chinês (tradicional)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tcheco"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dinamarquês"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Holandês"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Holandês (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francês"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandês"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galego"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grego"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonésio"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Letão"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Bokmål Norueguês"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polonês"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Português (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Português (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Romeno"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russo"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Espanhol"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turco"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ucraniano"
|
||||
|
||||
@@ -397,22 +397,22 @@ msgid ""
|
||||
msgstr ""
|
||||
"A aplicação \"{application_name}\" foi autorizada para acessar sua conta."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Você não pode gerar uma fatura para este pedido."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Uma fatura para este pedido já existe."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Ocorreu um erro enviando o email. Por favor, tente novamente em breve."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Um dos produtos selecionados não está disponível no país selecionado."
|
||||
@@ -1649,6 +1649,8 @@ msgstr "Ativo"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Canal de vendas"
|
||||
|
||||
@@ -2766,6 +2768,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -4040,10 +4045,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -5267,6 +5271,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produtos"
|
||||
@@ -5721,6 +5728,7 @@ msgid "Item"
|
||||
msgstr "Item"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variações"
|
||||
|
||||
@@ -9736,9 +9744,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13408,6 +13416,10 @@ msgstr "Data final"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16673,6 +16685,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17069,6 +17083,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17119,6 +17134,7 @@ msgstr "Cancelar"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17479,6 +17495,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "No date selected."
|
||||
@@ -17490,6 +17507,7 @@ msgstr "Nenhuma data selecionada."
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
#, fuzzy
|
||||
@@ -18518,8 +18536,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -24879,8 +24897,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Não conseguimos salvar suas alterações. Veja detalhes abaixo."
|
||||
@@ -26584,17 +26604,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -26605,6 +26616,174 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Todos os meios de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Variations"
|
||||
msgid "All variations"
|
||||
msgstr "Variações"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Novo pedido realizado"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Order is not paid."
|
||||
msgid "After order was paid"
|
||||
msgstr "O pedido não foi pago."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canal de vendas"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Variações do produto"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Meio de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "No date selected."
|
||||
msgid "Auto check-in"
|
||||
msgstr "Nenhuma data selecionada."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Seu carrinho foi atualizado."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Seu carrinho foi atualizado."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Seu carrinho foi atualizado."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "No date selected."
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Nenhuma data selecionada."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Position"
|
||||
msgid "Conditions"
|
||||
msgstr "Posição"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Filtrar por status"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "No date selected."
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Nenhuma data selecionada."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "No date selected."
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Nenhuma data selecionada."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Device type"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Tipo de dispositivo"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Meio de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Seu carrinho foi atualizado."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected event was not found."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "O evento selecionado não foi encontrado."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -29123,10 +29302,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Tipo de dispositivo"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -29205,18 +29380,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Lista de espera"
|
||||
msgstr[1] "Lista de espera"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Seu carrinho foi atualizado."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected event was not found."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "O evento selecionado não foi encontrado."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-06-08 18:00+0000\n"
|
||||
"Last-Translator: David Vaz <davidmgvaz@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Portugal) <https://translate.pretix.eu/projects/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.5.5\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Inglês"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Alemão"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Alemão (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Árabe"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chinês (simplificado)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Chinês (tradicional)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tcheco"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dinamarquês"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Holandês"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Holandês (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francês"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandês"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galian"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grego"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonésia"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Letão"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Norueguês Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Polaco"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Português (Portugal)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Português (Brasil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "romena"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Russo"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Espanhol"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turco"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "ucraniano"
|
||||
|
||||
@@ -400,23 +400,23 @@ msgid ""
|
||||
"account."
|
||||
msgstr "A aplicação \"{application_name}\" foi autorizada a aceder sua conta."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Não é possível gerar uma fatura para esta encomenda."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Uma factura para este pedido já existe."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Houve um erro ao enviar o e-mail. Por favor, tente novamente mais tarde."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Um dos produtos selecionados não está disponível no país selecionado."
|
||||
@@ -1641,6 +1641,8 @@ msgstr "Ativo"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Canal de Vendas"
|
||||
|
||||
@@ -2706,6 +2708,9 @@ msgstr "Predefinido para o tempo do relatório."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3858,16 +3863,10 @@ msgstr "Canais de vendas para verificar automaticamente em"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Todos os itens nesta lista de check-in serão marcados automaticamente como o "
|
||||
"checked-in quando comprado por qualquer um dos canais de vendas "
|
||||
"selecionados. Esta opção pode ser útil quando os bilhetes vendidos nas "
|
||||
"bilheterias não são verificados novamente antes da entrada e devem ser "
|
||||
"considerados validados diretamente após a compra."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5088,6 +5087,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produtos"
|
||||
@@ -5505,6 +5507,7 @@ msgid "Item"
|
||||
msgstr "Item"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variações"
|
||||
|
||||
@@ -9860,9 +9863,9 @@ msgstr "Número máximo de itens por pedido"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13912,6 +13915,10 @@ msgstr "Data final"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17185,6 +17192,8 @@ msgstr "Definir nova palavra-passe"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17578,6 +17587,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17628,6 +17638,7 @@ msgstr "Cancelar"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18004,6 +18015,7 @@ msgid "Connected devices"
|
||||
msgstr "Dispositivos conectados"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Check-in automático"
|
||||
|
||||
@@ -18012,6 +18024,7 @@ msgstr "Check-in automático"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19146,8 +19159,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25790,8 +25803,10 @@ msgstr "A nova lista de check-in foi criada."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -27522,17 +27537,8 @@ msgstr "Domínio conhecido"
|
||||
msgid "Known domains"
|
||||
msgstr "Domínios conhecidos"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Crachá"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27543,6 +27549,173 @@ msgstr "Crachá"
|
||||
msgid "the pretix team"
|
||||
msgstr "a equipa pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Todos os provedores de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Todas as ações"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Foi feito um novo pedido"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Marcar pedido como pago"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr "Se manter isto vazio, o bilhete será válido a partir da compra."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canal de vendas"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Variações de produto"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Habilitar método de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Check-in automático"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Uma regra de e-mail foi criada"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Uma regra de e-mail foi alterada"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Uma regra de e-mail foi excluída"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Regra personalizada de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Doença"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Excluir lista de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Tem certeza de que deseja excluir a porta?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Regra personalizada de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Regra personalizada de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Você ainda não criou nenhuma regra."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Criar uma nova lista de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Forma de pagamento"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Sua regra foi criada."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "A regra selecionada foi excluída."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Crachá"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30150,10 +30323,6 @@ msgstr "Inspecione os horários programados"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Use como modelo para uma nova data"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Você ainda não criou nenhuma regra."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -30239,14 +30408,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Entrada em fila de espera"
|
||||
msgstr[1] "Entrada em fila de espera"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Sua regra foi criada."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "A regra selecionada foi excluída."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -34546,6 +34707,18 @@ msgstr "Permissão de escrita"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Todos os itens nesta lista de check-in serão marcados automaticamente "
|
||||
#~ "como o checked-in quando comprado por qualquer um dos canais de vendas "
|
||||
#~ "selecionados. Esta opção pode ser útil quando os bilhetes vendidos nas "
|
||||
#~ "bilheterias não são verificados novamente antes da entrada e devem ser "
|
||||
#~ "considerados validados diretamente após a compra."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Canal de vendas desconhecido."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2022-04-28 02:00+0000\n"
|
||||
"Last-Translator: Edd28 <chitu_edy@yahoo.com>\n"
|
||||
"Language-Team: Romanian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.12\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Engleză"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Germană"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Germană (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arab"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Chineză (simplificată)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Cehă"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Daneză"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Olandeză"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Olandeză (informal)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Teritoriile Franceze de Sud"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Finlandeză"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galiciană"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Greek"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Italiană"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Letonă"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Poloneză"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugheză (Portugalia)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugheză (Brazilia)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Română"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Rusă"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Spaniolă"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turcă"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -419,24 +419,24 @@ msgid ""
|
||||
msgstr ""
|
||||
"Aplicația \"{application_name}\" a fost autorizată să vă acceseze contul."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Nu puteți genera o factură pentru această comandă."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Există deja o factură pentru această comandă."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"S-a produs o eroare la trimiterea mesajului. Vă rugăm să încercați din nou "
|
||||
"mai târziu."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Unul dintre produsele selectate nu este disponibil în țara selectată."
|
||||
@@ -1704,6 +1704,8 @@ msgstr "Activ"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Canale de vânzare"
|
||||
|
||||
@@ -2790,6 +2792,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3969,16 +3974,10 @@ msgstr "Canale de vânzări pentru a face check-in automat"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Toate articolele din această listă de check-in vor fi marcate automat ca "
|
||||
"fiind scanate atunci când sunt achiziționate prin oricare dintre canalele de "
|
||||
"vânzare selectate. Această opțiune poate fi utilă atunci când biletele "
|
||||
"vândute la casa de bilete nu sunt verificate din nou înainte de intrare și "
|
||||
"ar trebui să fie considerate validate direct la cumpărare."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5206,6 +5205,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produse"
|
||||
@@ -5635,6 +5637,7 @@ msgid "Item"
|
||||
msgstr "Element"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variații"
|
||||
|
||||
@@ -10079,9 +10082,9 @@ msgstr "Numărul maxim de articole pe comandă"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14247,6 +14250,10 @@ msgstr "Dată sfârșit"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17619,6 +17626,8 @@ msgstr "Setați o nouă parolă"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -18027,6 +18036,7 @@ msgstr[2] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -18077,6 +18087,7 @@ msgstr "Anulează"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18466,6 +18477,7 @@ msgid "Connected devices"
|
||||
msgstr "Dispozitive conectate"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatizare check-in"
|
||||
|
||||
@@ -18474,6 +18486,7 @@ msgstr "Automatizare check-in"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19627,8 +19640,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -26348,8 +26361,10 @@ msgstr "Noua listă de check-in a fost creată."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Nu am putut să vă salvăm modificările. Vedeți mai jos pentru detalii."
|
||||
@@ -28119,17 +28134,8 @@ msgstr "Domeniu cunoscut"
|
||||
msgid "Known domains"
|
||||
msgstr "Domenii cunoscute"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Insigne"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -28140,6 +28146,167 @@ msgstr "Insigne"
|
||||
msgid "the pretix team"
|
||||
msgstr "echipa pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Toți procesatorii de plăți"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Toate acțiunile"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Comandă nouă plasată"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Marcați comanda ca fiind plătită"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Canalul de vânzări"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Variații produse"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Activați metoda de plată"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Automatizare check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "A fost creată o regulă de e-mail"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "O regulă de e-mail a fost actualizată"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "O regulă de e-mail a fost ștearsă"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Regulă personalizată de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
msgid "Conditions"
|
||||
msgstr "Confirmări"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Șterge lista de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Sunteți sigur că doriți să ștergeți poarta de acces?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Regulă personalizată de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Regulă personalizată de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Nu ați creat încă nicio regulă."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Creați o nouă listă de check-in"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Modalitate de plată"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Regula dvs. a fost creată."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Regula selectată a fost ștearsă."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Insigne"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30801,10 +30968,6 @@ msgstr "Inspectați orele programate"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Utilizați ca șablon pentru o nouă dată"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Nu ați creat încă nicio regulă."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -30896,14 +31059,6 @@ msgstr[0] "Înscriere pe lista de așteptare"
|
||||
msgstr[1] "Înscriere pe lista de așteptare"
|
||||
msgstr[2] "Înscriere pe lista de așteptare"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Regula dvs. a fost creată."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Regula selectată a fost ștearsă."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -35280,6 +35435,18 @@ msgstr "Acces la scriere"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Toate articolele din această listă de check-in vor fi marcate automat ca "
|
||||
#~ "fiind scanate atunci când sunt achiziționate prin oricare dintre canalele "
|
||||
#~ "de vânzare selectate. Această opțiune poate fi utilă atunci când biletele "
|
||||
#~ "vândute la casa de bilete nu sunt verificate din nou înainte de intrare "
|
||||
#~ "și ar trebui să fie considerate validate direct la cumpărare."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Canal de vânzare necunoscut."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-05-13 21:00+0000\n"
|
||||
"Last-Translator: Serhii Horichenko <m@sgg.im>\n"
|
||||
"Language-Team: Russian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.4.3\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -398,22 +398,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Невозможно сгенерировать счёт для данного заказа."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Счёт для данного заказа уже существует."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
#, fuzzy
|
||||
#| msgid "The selected product does not allow to select a seat."
|
||||
@@ -1715,6 +1715,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2832,6 +2834,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -4072,16 +4077,10 @@ msgstr "Каналы продаж для автоматической регис
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Все позиции в данном списке будут автоматически помечены как "
|
||||
"зарегистрированные при покупке через любой из выбранных каналов продаж. "
|
||||
"Данная опция может быть полезна, когда билеты, проданные в кассах, не "
|
||||
"проверяются повторно на входе и будут считаться проверенными непосредственно "
|
||||
"при покупке."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
#, fuzzy
|
||||
@@ -5320,6 +5319,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5769,6 +5771,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -9986,9 +9989,9 @@ msgstr "Максимальное количество продуктов на о
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13618,6 +13621,10 @@ msgstr "Дата мероприятия"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16793,6 +16800,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17175,6 +17184,7 @@ msgstr[2] "Вы можете отменить этот заказ, исполь
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17225,6 +17235,7 @@ msgstr "Отменить"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17578,6 +17589,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -17586,6 +17598,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -18580,8 +18593,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -24830,8 +24843,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -26482,17 +26497,8 @@ msgstr "Известный домен"
|
||||
msgid "Known domains"
|
||||
msgstr "Известные домены"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -26503,6 +26509,173 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Все поставщики платежных услуг"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Sample variation"
|
||||
msgid "All variations"
|
||||
msgstr "Образец варианта"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Создан новый заказ"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Order marked as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Заказ помечен как оплаченный"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Please enter a valid email address."
|
||||
msgid "All sales channels"
|
||||
msgstr "Пожалуйста, введите действительный адрес электронной почты."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Варианты продукта"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Активировать способ оплаты"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Checkout"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Оформить заказ"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "The order has been canceled."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Заказ отменён."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "The order has been canceled."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Заказ отменён."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The order has been canceled."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Заказ отменён."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Date and time"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Дата и время"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Confirmations"
|
||||
msgid "Conditions"
|
||||
msgstr "Подтверждения"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Checkout"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Оформить заказ"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "You can cancel this order using the following button."
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Вы можете отменить этот заказ, используя следующую кнопку."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Checkout"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Оформить заказ"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Checkout"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Оформить заказ"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Date and time"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Дата и время"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Способ оплаты"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Ваша корзина была обновлена."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "The selected event date is not active."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Выбранная дата мероприятия не активна."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -29030,10 +29203,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Дата и время"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -29116,19 +29285,6 @@ msgstr[0] "Запись в листе ожидания"
|
||||
msgstr[1] "Запись в листе ожидания"
|
||||
msgstr[2] "Запись в листе ожидания"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "Your cart has been updated."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Ваша корзина была обновлена."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "The selected event date is not active."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Выбранная дата мероприятия не активна."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -33608,6 +33764,18 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Все позиции в данном списке будут автоматически помечены как "
|
||||
#~ "зарегистрированные при покупке через любой из выбранных каналов продаж. "
|
||||
#~ "Данная опция может быть полезна, когда билеты, проданные в кассах, не "
|
||||
#~ "проверяются повторно на входе и будут считаться проверенными "
|
||||
#~ "непосредственно при покупке."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "You cannot select an item that belongs to a different event."
|
||||
#~ msgid "You cannot reorder items spanning different categories."
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2021-03-03 06:00+0000\n"
|
||||
"Last-Translator: helabasa <R45XvezA@pm.me>\n"
|
||||
"Language-Team: Sinhala <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 4.4.2\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "අරාබි"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "ප්රංශ"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "ග්රීක"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "ඉතාලි"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -381,22 +381,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1601,6 +1601,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2646,6 +2648,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3746,10 +3751,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4759,6 +4763,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5139,6 +5146,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8809,9 +8817,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12158,6 +12166,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15096,6 +15108,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15444,6 +15458,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15494,6 +15509,7 @@ msgstr "අවලංගු"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15837,6 +15853,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15845,6 +15862,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16798,8 +16816,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22647,8 +22665,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24187,17 +24207,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24208,6 +24219,141 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "All dates"
|
||||
msgid "All variations"
|
||||
msgstr "සියලුම දිනයන්"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "All dates"
|
||||
msgid "All payment methods"
|
||||
msgstr "සියලුම දිනයන්"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "All dates"
|
||||
msgid "Conditions"
|
||||
msgstr "සියලුම දිනයන්"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Paid orders"
|
||||
msgid "Payment methods"
|
||||
msgstr "ගෙවූ ඇණවුම්"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26491,10 +26637,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26568,14 +26710,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-06-26 22:00+0000\n"
|
||||
"Last-Translator: Kristian Feldsam <feldsam@gmail.com>\n"
|
||||
"Language-Team: Slovak <https://translate.pretix.eu/projects/pretix/pretix/sk/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.6.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Angličtina"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Nemčina"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Nemčina (neformálne)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arabčina"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Čínština (zjednodušená)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Čínština (tradičná)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Český"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Dánsky"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Holandský"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "holandčina (neformálne)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Francúzsky"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Fínsky"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galícia"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Grécky"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Indonézsky"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Taliansky"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Lotyšský"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Nórsky jazyk Bokmål"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Poľský"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portugalčina (Portugalsko)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portugalčina (Brazília)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Rumunský"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Ruský"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Španielčina"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Turecký"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukrajinský"
|
||||
|
||||
@@ -400,22 +400,22 @@ msgid ""
|
||||
msgstr ""
|
||||
"Aplikácia \"{application_name}\" bola autorizovaná na prístup k vášmu kontu."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Pre túto objednávku nie je možné vygenerovať faktúru."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Faktúra pre túto objednávku už existuje."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Pri odosielaní pošty došlo k chybe. Skúste to prosím neskôr."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Jeden z vybraných produktov nie je vo vybranej krajine dostupný."
|
||||
@@ -1642,6 +1642,8 @@ msgstr "Aktívne"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Predajné kanály"
|
||||
|
||||
@@ -2702,6 +2704,9 @@ msgstr "Predvolené nastavenie je čas správy."
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3851,16 +3856,10 @@ msgstr "Predajné kanály na automatické prihlásenie"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Všetky položky na tomto zozname budú automaticky označené ako zaevidované "
|
||||
"pri nákupe prostredníctvom niektorého z vybraných predajných kanálov. Táto "
|
||||
"možnosť môže byť užitočná v prípade, že vstupenky predané v pokladni nie sú "
|
||||
"pred vstupom znovu skontrolované a mali by sa považovať za potvrdené priamo "
|
||||
"pri kúpe."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5008,6 +5007,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Produkty"
|
||||
@@ -5413,6 +5415,7 @@ msgid "Item"
|
||||
msgstr "Položka"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variácie"
|
||||
|
||||
@@ -9539,9 +9542,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13482,6 +13485,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16662,6 +16669,8 @@ msgstr "Nastavenie nového hesla"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17028,6 +17037,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17078,6 +17088,7 @@ msgstr "Zrušiť"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17447,6 +17458,7 @@ msgid "Connected devices"
|
||||
msgstr "Pripojené zariadenia"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Automatizované odbavenie"
|
||||
|
||||
@@ -17455,6 +17467,7 @@ msgstr "Automatizované odbavenie"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -18535,8 +18548,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -24801,8 +24814,10 @@ msgstr "Bol vytvorený nový zoznam na odbavenie."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -26423,17 +26438,8 @@ msgstr "Známa doména"
|
||||
msgid "Known domains"
|
||||
msgstr "Známe domény"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Odznaky"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -26444,6 +26450,171 @@ msgstr "Odznaky"
|
||||
msgid "the pretix team"
|
||||
msgstr "tím pretix"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Všetci poskytovatelia platobných služieb"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Všetky akcie"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Nová objednávka"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Označiť objednávku ako zaplatenú"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid "If you keep this empty, all input will be allowed."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr "Ak necháte túto položku prázdnu, budú povolené všetky vstupy."
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Predajný kanál"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Varianty produktu"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Povolenie spôsobu platby"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Automatizované odbavenie"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Bolo vytvorené e-mailové pravidlo"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Bolo aktualizované e-mailové pravidlo"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Pravidlo e-mailu bolo odstránené"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Vlastné pravidlo registrácie"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "Stav"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Odstránenie zoznamu prihlásených"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Ste si istí, že chcete odstrániť bránu?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Vlastné pravidlo registrácie"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Vlastné pravidlo registrácie"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Zatiaľ ste nevytvorili žiadne pravidlá."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Vytvorenie nového zoznamu na odbavenie"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Spôsob platby"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Vaše pravidlo bolo vytvorené."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Vybrané pravidlo bolo odstránené."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Odznaky"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -28861,10 +29032,6 @@ msgstr "Kontrola naplánovaných časov"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Použitie ako šablóna pre nové pravidlo"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Zatiaľ ste nevytvorili žiadne pravidlá."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -28942,14 +29109,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Vaše pravidlo bolo vytvorené."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Vybrané pravidlo bolo odstránené."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -33061,6 +33220,18 @@ msgstr "Prístup na zápis"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Všetky položky na tomto zozname budú automaticky označené ako zaevidované "
|
||||
#~ "pri nákupe prostredníctvom niektorého z vybraných predajných kanálov. "
|
||||
#~ "Táto možnosť môže byť užitočná v prípade, že vstupenky predané v pokladni "
|
||||
#~ "nie sú pred vstupom znovu skontrolované a mali by sa považovať za "
|
||||
#~ "potvrdené priamo pri kúpe."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Neznámy predajný kanál."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2022-05-23 11:21+0000\n"
|
||||
"Last-Translator: Emanat Institute <info@emanat.si>\n"
|
||||
"Language-Team: Slovenian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 4.12\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -417,22 +417,22 @@ msgid ""
|
||||
msgstr ""
|
||||
"Program \"{application_name}\" je bil avtoriziran za dostop do vašega računa."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Ne morete ustvariti računa za to naročilo."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Račun za to naročilo že obstaja."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Napaka pri pošiljanju emaila. Poskusite ponovno kasneje."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Eden od izbranih izdelkov ni na voljo v izbrani državi."
|
||||
@@ -1709,6 +1709,8 @@ msgstr "Aktiven"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Prodajni kanali"
|
||||
|
||||
@@ -2805,6 +2807,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3988,15 +3993,10 @@ msgstr "Prodajni kanali za samodejno prijavo"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Vsi predmeti na tem prijavnem seznamu bodo ob nakupu prek katerega koli "
|
||||
"izbranega prodajnega kanala samodejno označeni kot prijavljeni. Ta možnost "
|
||||
"je lahko koristna, če vstopnic, prodanih na blagajni, pred vstopom še enkrat "
|
||||
"ne preverite in bi jih bilo treba šteti za potrjene neposredno ob nakupu."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5198,6 +5198,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Izdelki"
|
||||
@@ -5628,6 +5631,7 @@ msgid "Item"
|
||||
msgstr "Postavka"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Variacije"
|
||||
|
||||
@@ -9987,9 +9991,9 @@ msgstr "Največje število izdelkov na naročilo"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13533,6 +13537,10 @@ msgstr "Datum konca"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16702,6 +16710,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17088,6 +17098,7 @@ msgstr[3] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17138,6 +17149,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -17488,6 +17500,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -17496,6 +17509,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -18484,8 +18498,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -24692,8 +24706,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -26335,17 +26351,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -26356,6 +26363,170 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Vsi ponudniki plačil"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Variations"
|
||||
msgid "All variations"
|
||||
msgstr "Variacije"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Oddano novo naročilo"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Order marked as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Naročilo označeno za plačano"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Prodajni kanal"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Verzije izdelka"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Omogoči način plačila"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Filtriraj po statusu"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Davčno pravilo je izbrisano."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Davčno pravilo je izbrisano."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Davčno pravilo je izbrisano."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Creation date"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Datum ustvarjenja"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Position"
|
||||
msgid "Conditions"
|
||||
msgstr "Pozicija"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Filtriraj po statusu"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Filtriraj po statusu"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Filter by status"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Filtriraj po statusu"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Creation date"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Datum ustvarjenja"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Način plačila"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The gate has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Vrata so ustvarjena."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The presale period for this event has ended."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Predprodja za ta dogodek se je končalo."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -28846,10 +29017,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Datum ustvarjenja"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -28932,18 +29099,6 @@ msgstr[1] "Vpis v čakalni seznam"
|
||||
msgstr[2] "Vpis v čakalni seznam"
|
||||
msgstr[3] "Vpis v čakalni seznam"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The gate has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Vrata so ustvarjena."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The presale period for this event has ended."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Predprodja za ta dogodek se je končalo."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -33079,6 +33234,18 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Vsi predmeti na tem prijavnem seznamu bodo ob nakupu prek katerega koli "
|
||||
#~ "izbranega prodajnega kanala samodejno označeni kot prijavljeni. Ta "
|
||||
#~ "možnost je lahko koristna, če vstopnic, prodanih na blagajni, pred "
|
||||
#~ "vstopom še enkrat ne preverite in bi jih bilo treba šteti za potrjene "
|
||||
#~ "neposredno ob nakupu."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Neznan prodajni kanal."
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-03-30 11:00+0000\n"
|
||||
"Last-Translator: Thatthep <amaudy@gmail.com>\n"
|
||||
"Language-Team: Thai <https://translate.pretix.eu/projects/pretix/pretix/th/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.4.3\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "อังกฤษ"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "เยอรมัน"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "เยอรมัน"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "อารบิก"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "อารบิก"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "จีน"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "เช็ก"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "เดนมาร์ก"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "ดัชท์"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "ดัชท์"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "ฝรั่งเศส"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "ฟินแลนด์"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "กรีก"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "อินโดนีเชีย"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "อิตาลี"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "แลตเวียน"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "โปแลนด์"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "โปรตุเกส (โปรตุเกส)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "โปรตุเกส (บราซิล)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "โรเมเนียน"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "รัสเซีย"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "สเปน"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "ตุรกี"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "ยูเครน"
|
||||
|
||||
@@ -382,22 +382,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1594,6 +1594,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2629,6 +2631,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3729,10 +3734,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4740,6 +4744,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5120,6 +5127,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8786,9 +8794,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12110,6 +12118,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15040,6 +15052,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15387,6 +15401,7 @@ msgstr[0] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15437,6 +15452,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15780,6 +15796,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15788,6 +15805,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16737,8 +16755,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22562,8 +22580,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24099,17 +24119,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24120,6 +24131,130 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
msgid "All variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
msgid "All products and variations"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26391,10 +26526,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26466,14 +26597,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"PO-Revision-Date: 2024-05-23 14:03+0000\n"
|
||||
"Last-Translator: Sinan Sarıçınar <saricinars@mef.edu.tr>\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-08-02 23:00+0000\n"
|
||||
"Last-Translator: baris gormez <vbgormez@gmail.com>\n"
|
||||
"Language-Team: Turkish <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
"tr/>\n"
|
||||
"Language: tr\n"
|
||||
@@ -17,121 +17,121 @@ 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.5.5\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "İngilizce"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Almanca"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Almanca (gayri resmi)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Arapça"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr "Katalanca"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Çince (Basitleştirilmiş)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Çince (Geleneksel)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Çekce"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Danimarkalı"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Flemenkçe"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Almanca (gayri resmi)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Fransızca"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Fince"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Galiçyaca"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Yunanca"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Endonezyaca"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "İtalyanca"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Letonca"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Lehçe"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Portekizce (Portekiz)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Portekizce (Brezilya)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Romanca"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Rusça"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
msgid "Slovak"
|
||||
msgstr "Slovakça"
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr "İsveççe"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "İspanyolca"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Türkçe"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Ukraynaca"
|
||||
|
||||
@@ -417,23 +417,23 @@ msgstr ""
|
||||
"\"{application_name}\" uygulaması hesabınıza erişmek üzere "
|
||||
"yetkilendirilmiştir."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Bu sipariş için fatura oluşturamazsınız."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Bu sipariş için bir fatura zaten mevcut."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
"Postayı gönderirken bir hata oluştu. Lütfen daha sonra tekrar deneyiniz."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Seçilen ürünlerden biri seçilen ülke için müsait değil."
|
||||
@@ -1758,6 +1758,8 @@ msgstr "Aktif"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
#, fuzzy
|
||||
#| msgid "Save changes"
|
||||
msgid "Sales channels"
|
||||
@@ -2921,6 +2923,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -4207,10 +4212,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -5447,6 +5451,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Ürünler"
|
||||
@@ -5912,6 +5919,7 @@ msgid "Item"
|
||||
msgstr "Madde"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Varyasyonlar"
|
||||
|
||||
@@ -10364,9 +10372,9 @@ msgstr "Sipariş başına maksimum öğe sayısı"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14657,6 +14665,10 @@ msgstr "Bitiş Tarihi"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -18188,6 +18200,8 @@ msgstr "Yeni şifre belirle"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -18604,6 +18618,7 @@ msgstr[1] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -18654,6 +18669,7 @@ msgstr "İptal et"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -19044,6 +19060,7 @@ msgid "Connected devices"
|
||||
msgstr "2. Cihazı bağla"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Automated check-in"
|
||||
@@ -19054,6 +19071,7 @@ msgstr "Kontrol edilmedi"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
#, fuzzy
|
||||
@@ -20177,8 +20195,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -27094,8 +27112,10 @@ msgstr "Yeni check-in listesi oluşturuldu."
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Değişikliklerinizi kaydedemedik. Detaylar için aşağıya bakın."
|
||||
@@ -28924,17 +28944,8 @@ msgstr "Bilinen alan"
|
||||
msgid "Known domains"
|
||||
msgstr "Bilinen alanlar"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Rozetler"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -28945,6 +28956,174 @@ msgstr "Rozetler"
|
||||
msgid "the pretix team"
|
||||
msgstr "pretix takımı"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Bütün ödeme sağlayıcıları"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "Tüm eylemler"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Yeni sipariş verildi"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Siparişi ödeme olarak işaretle"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Save changes"
|
||||
msgid "All sales channels"
|
||||
msgstr "Değişiklikleri Kaydet"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Ürün varyasyonları"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Ödeme yöntemini etkinleştir"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Kontrol edilmedi"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "Vergi kuralı silindi."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "Vergi kuralı silindi."
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Vergi kuralı silindi."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Kontrol edilmedi"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Confirmations"
|
||||
msgid "Conditions"
|
||||
msgstr "Onaylar"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Check-in listesini sil"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the team?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Ekibi silmek istediğinden emin misin?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Kontrol edilmedi"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Kontrol edilmedi"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Henüz herhangi bir vergi kuralı oluşturmadınız."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Yeni bir check-in listesi oluştur"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Ödeme şekli"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Kullanıcı oluşturuldu."
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Seçilen vergi kuralı silindi."
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "Rozetler"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -31705,12 +31884,6 @@ msgstr "İndirimli bilet"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "Yeni bir tarih için şablon olarak kullan"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "Henüz herhangi bir vergi kuralı oluşturmadınız."
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
#, fuzzy
|
||||
@@ -31797,18 +31970,6 @@ msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "Liste girişi bekleniyor"
|
||||
msgstr[1] "Liste girişi bekleniyor"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "Kullanıcı oluşturuldu."
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "Seçilen vergi kuralı silindi."
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-05-23 14:03+0000\n"
|
||||
"Last-Translator: Serhii Horichenko <m@sgg.im>\n"
|
||||
"Language-Team: Ukrainian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -20,119 +20,119 @@ msgstr ""
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.5.5\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Англійська"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Німецька"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Німецька (розмовна)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Арабська"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Китайська (спрощена)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Чеська"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Данська"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Голландська"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Голландська (розмовна)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Французька"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Фінська"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Галіційська"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Грецька"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Італійська"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Латвійська"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Польська"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Португальська (Португалія)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Португальська (Бразилія)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Російська"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Іспанська"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Турецька"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
|
||||
@@ -410,22 +410,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr "Додаток \"{application_name}\" дозволило увійти в свій профіль."
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "Ви не можете створити рахунок-фактуру для цього замовлення."
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "Рахунок-фактура для цього замовлення вже існує."
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "Помилка відправки пошти. Будь ласка, спробуйте ще раз пізніше."
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "Один з обраних продуктів не є доступним в обраній країні."
|
||||
@@ -1680,6 +1680,8 @@ msgstr "Статус: активний"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "Канали продажу"
|
||||
|
||||
@@ -2761,6 +2763,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3930,16 +3935,10 @@ msgstr "Канали продажів для автоматичної реєст
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"Усі продукти у цьому списку реєстрації будуть автоматично позначені як "
|
||||
"зареєстровані, якщо вони куплені через будь-який із вибраних каналів "
|
||||
"продажу. Ця опція може бути корисною, коли квитки, продані в касах, не "
|
||||
"перевіряються повторно перед входом і повинні вважатися підтвердженими "
|
||||
"безпосередньо після покупки."
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -5164,6 +5163,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "Продукти"
|
||||
@@ -5578,6 +5580,7 @@ msgid "Item"
|
||||
msgstr "Предмет"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "Варіації"
|
||||
|
||||
@@ -9937,9 +9940,9 @@ msgstr "Максимальна кількість позицій в одному
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14026,6 +14029,10 @@ msgstr "Кінець"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17319,6 +17326,8 @@ msgstr "Встановити новий пароль"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17701,6 +17710,7 @@ msgstr[2] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17751,6 +17761,7 @@ msgstr "Скасувати"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18123,6 +18134,7 @@ msgid "Connected devices"
|
||||
msgstr "Підключені пристрої"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "Автоматична реєстрація"
|
||||
|
||||
@@ -18131,6 +18143,7 @@ msgstr "Автоматична реєстрація"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -19174,8 +19187,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -25486,8 +25499,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "Нам не вдалося зберегти Ваші зміни. Подробиці дивіться нижче."
|
||||
@@ -27084,17 +27099,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27105,6 +27111,163 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "Усі постачальники платежів"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Variations"
|
||||
msgid "All variations"
|
||||
msgstr "Варіації"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "Зроблено нове замовлення"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "Позначити замовлення як оплачене"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "Канал продажу"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "Варіації продукту"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "Увімкнути спосіб оплати"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "Автоматична реєстрація"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The check-in list has been deleted."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "Список реєстрації видалено."
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "Видалити список реєстрації"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
msgid "Conditions"
|
||||
msgstr "ID позиції"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "Видалити список реєстрації"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "Ви впевнені, що хочете видалити ці ворота?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "Автоматична реєстрація"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "Автоматична реєстрація"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new team"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "Створити нову команду"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "Спосіб оплати"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -29601,10 +29764,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -29688,14 +29847,6 @@ msgstr[0] "Запис в список очікування"
|
||||
msgstr[1] "Запис в список очікування"
|
||||
msgstr[2] "Запис в список очікування"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -33944,6 +34095,18 @@ msgstr "Доступ до запису"
|
||||
msgid "Kosovo"
|
||||
msgstr "Косово"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "Усі продукти у цьому списку реєстрації будуть автоматично позначені як "
|
||||
#~ "зареєстровані, якщо вони куплені через будь-який із вибраних каналів "
|
||||
#~ "продажу. Ця опція може бути корисною, коли квитки, продані в касах, не "
|
||||
#~ "перевіряються повторно перед входом і повинні вважатися підтвердженими "
|
||||
#~ "безпосередньо після покупки."
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "Невідомий канал збуту."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-06-01 01:00+0000\n"
|
||||
"Last-Translator: Luan Thien <vanthienluan@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.5.5\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "Tiếng Anh"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "Tiếng Đức"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "Tiếng Đức (thân mật)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "Tiếng A-rập"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "Tiếng Trung (giản thể)"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "Tiếng Trung Quốc (phồn thể)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "Tiếng Séc"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "Tiếng Đan Mạch"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "Tiếng Hà Lan"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "Tiếng Hà Lan (thân mật)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "Tiếng Pháp"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "Tiếng Phần Lan"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "Tiếng Galician"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "Tiếng Hy Lạp"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "Tiếng Indonesia"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "Tiếng Ý"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "Tiếng Latvia"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr "Tiếng Na Uy"
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "Tiếng Ba Lan"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "Tiếng Bồ Đào Nha"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "Tiếng Bồ Đào Nha (Brazil)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "Tiếng Ru-ma-ni"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "Tiếng Nga"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "Tiếng Tây Ban Nha"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "Tiếng Thổ Nhĩ Kỳ"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "Tiếng Ukrainian"
|
||||
|
||||
@@ -384,22 +384,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr ""
|
||||
@@ -1598,6 +1598,8 @@ msgstr ""
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr ""
|
||||
|
||||
@@ -2635,6 +2637,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3735,10 +3740,9 @@ msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
@@ -4750,6 +4754,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr ""
|
||||
@@ -5132,6 +5139,7 @@ msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr ""
|
||||
|
||||
@@ -8789,9 +8797,9 @@ msgstr ""
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -12117,6 +12125,10 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -15053,6 +15065,8 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -15400,6 +15414,7 @@ msgstr[0] ""
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -15450,6 +15465,7 @@ msgstr "Huỷ"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -15793,6 +15809,7 @@ msgid "Connected devices"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr ""
|
||||
|
||||
@@ -15801,6 +15818,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -16750,8 +16768,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -22578,8 +22596,10 @@ msgstr ""
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr ""
|
||||
@@ -24117,17 +24137,8 @@ msgstr ""
|
||||
msgid "Known domains"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -24138,6 +24149,134 @@ msgstr ""
|
||||
msgid "the pretix team"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "Product variation"
|
||||
msgid "All variations"
|
||||
msgstr "Biến thể sản phẩm"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
msgid "After order was placed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
msgid "After order was paid"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
msgid "All sales channels"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variation"
|
||||
msgid "All products and variations"
|
||||
msgstr "Biến thể sản phẩm"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
msgid "All payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
msgid "Auto check-in"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
msgid "Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
msgid "Auto check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
msgid "Auto check-in rules"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
msgid "Payment methods"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -26409,10 +26548,6 @@ msgstr ""
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -26483,14 +26618,6 @@ msgid "%(number)s waiting list entry"
|
||||
msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-04-10 23:00+0000\n"
|
||||
"Last-Translator: Shiiko <shiiko@xlclan.com>\n"
|
||||
"Language-Team: Chinese (Simplified) <https://translate.pretix.eu/projects/"
|
||||
@@ -19,121 +19,121 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.4.3\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "英语"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "德语"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "德语(非正式的)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "阿拉伯语"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "简体中文"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "繁体中文"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "捷克语"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "丹麦语"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "荷兰语"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "荷兰语(非正式的)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "法语"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
#, fuzzy
|
||||
#| msgid "Danish"
|
||||
msgid "Finnish"
|
||||
msgstr "芬兰语"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "加利西亚语"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "希腊语"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr "印度尼西亚语"
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "意大利语"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "拉脱维亚语"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "波兰语"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "葡萄牙语(葡萄牙)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "葡萄牙语(巴西)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "罗马尼亚语"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "俄语"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "西班牙语"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "土耳其语"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "乌克兰语"
|
||||
|
||||
@@ -401,22 +401,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr "应用程序“{application_name}”已被授权访问您的帐户。"
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "您无法为此订单生成发票。"
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "此订单的发票已存在。"
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "发送邮件时出错。请稍后再试。"
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "选中的一项产品在选择的地区不可用。"
|
||||
@@ -1704,6 +1704,8 @@ msgstr "有效的"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "销售渠道"
|
||||
|
||||
@@ -2835,6 +2837,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -4078,14 +4083,10 @@ msgstr "销售渠道自动签到"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"当通过任何选定的销售渠道购买时,此登记列表上的所有项目将自动标记为已登记。当"
|
||||
"在票房出售的门票在进入之前没有再次检查时,该选项会很有用,并且应该被认为是在"
|
||||
"购买时直接验证的。"
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
#, fuzzy
|
||||
@@ -5280,6 +5281,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "产品"
|
||||
@@ -5717,6 +5721,7 @@ msgid "Item"
|
||||
msgstr "项目"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "变动"
|
||||
|
||||
@@ -9923,9 +9928,9 @@ msgstr "每个订单的最大项目数"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -14009,6 +14014,10 @@ msgstr "结束日期"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -17434,6 +17443,8 @@ msgstr "设置新密码"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -17829,6 +17840,7 @@ msgstr[0] "您确定要删除签入列表<strong>%(name)s</strong>?"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -17879,6 +17891,7 @@ msgstr "取消"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -18262,6 +18275,7 @@ msgid "Connected devices"
|
||||
msgstr "连接设备"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Automated check-in"
|
||||
@@ -18272,6 +18286,7 @@ msgstr "未签入"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
#, fuzzy
|
||||
@@ -19362,8 +19377,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -26052,8 +26067,10 @@ msgstr "已创建新的签入列表。"
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "我们无法保存您的更改。详见下文。"
|
||||
@@ -27778,17 +27795,8 @@ msgstr "已知域名"
|
||||
msgid "Known domains"
|
||||
msgstr "已知域名"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "徽章"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -27799,6 +27807,174 @@ msgstr "徽章"
|
||||
msgid "the pretix team"
|
||||
msgstr "pretix团队"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "所有的支付供应商"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "所有行为"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "新预约订单"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "将订单标记为已付款"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "销售渠道"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "产品变化"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "启用付款方式"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "未签入"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "已删除税收规则。"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "已删除税收规则。"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "The tax rule has been deleted."
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "已删除税收规则。"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "未签入"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgid "Confirmations"
|
||||
msgid "Conditions"
|
||||
msgstr "确认"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "删除签入列表"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the team?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "您确定要删除团队?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "未签入"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Not checked in"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "未签入"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "您尚未创建任何税收规则。"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "新建签入列表"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "支付方式"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "用户已创建。"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "所选的税务规则已被删除。"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "徽章"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -30474,12 +30650,6 @@ msgstr "减少门票"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "用作新日期的模板"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
#, fuzzy
|
||||
#| msgid "You haven't created any tax rules yet."
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "您尚未创建任何税收规则。"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
#, fuzzy
|
||||
@@ -30563,18 +30733,6 @@ msgid "%(number)s waiting list entry"
|
||||
msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "等待列表条目"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
#, fuzzy
|
||||
#| msgid "The user has been created."
|
||||
msgid "Your rule has been created."
|
||||
msgstr "用户已创建。"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
#, fuzzy
|
||||
#| msgid "The selected tax rule has been deleted."
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "所选的税务规则已被删除。"
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -35042,6 +35200,16 @@ msgstr "录入权限"
|
||||
msgid "Kosovo"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "当通过任何选定的销售渠道购买时,此登记列表上的所有项目将自动标记为已登记。"
|
||||
#~ "当在票房出售的门票在进入之前没有再次检查时,该选项会很有用,并且应该被认为"
|
||||
#~ "是在购买时直接验证的。"
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "未知的销售渠道。"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-07-26 07:18+0000\n"
|
||||
"POT-Creation-Date: 2024-07-29 10:52+0000\n"
|
||||
"PO-Revision-Date: 2024-01-22 17:08+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"Language-Team: Chinese (Traditional) <https://translate.pretix.eu/projects/"
|
||||
@@ -19,119 +19,119 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.3.1\n"
|
||||
|
||||
#: pretix/_base_settings.py:78
|
||||
#: pretix/_base_settings.py:79
|
||||
msgid "English"
|
||||
msgstr "英語"
|
||||
|
||||
#: pretix/_base_settings.py:79
|
||||
#: pretix/_base_settings.py:80
|
||||
msgid "German"
|
||||
msgstr "德語"
|
||||
|
||||
#: pretix/_base_settings.py:80
|
||||
#: pretix/_base_settings.py:81
|
||||
msgid "German (informal)"
|
||||
msgstr "德語(非正式)"
|
||||
|
||||
#: pretix/_base_settings.py:81
|
||||
#: pretix/_base_settings.py:82
|
||||
msgid "Arabic"
|
||||
msgstr "阿拉伯語"
|
||||
|
||||
#: pretix/_base_settings.py:82
|
||||
#: pretix/_base_settings.py:83
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:83
|
||||
#: pretix/_base_settings.py:84
|
||||
msgid "Chinese (simplified)"
|
||||
msgstr "簡體中文"
|
||||
|
||||
#: pretix/_base_settings.py:84
|
||||
#: pretix/_base_settings.py:85
|
||||
msgid "Chinese (traditional)"
|
||||
msgstr "中文(繁體中文)"
|
||||
|
||||
#: pretix/_base_settings.py:85
|
||||
#: pretix/_base_settings.py:86
|
||||
msgid "Czech"
|
||||
msgstr "捷克語"
|
||||
|
||||
#: pretix/_base_settings.py:86
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "Danish"
|
||||
msgstr "丹麥語"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
#: pretix/_base_settings.py:88
|
||||
msgid "Dutch"
|
||||
msgstr "荷語"
|
||||
|
||||
#: pretix/_base_settings.py:88
|
||||
#: pretix/_base_settings.py:89
|
||||
msgid "Dutch (informal)"
|
||||
msgstr "荷語(非正式)"
|
||||
|
||||
#: pretix/_base_settings.py:89
|
||||
#: pretix/_base_settings.py:90
|
||||
msgid "French"
|
||||
msgstr "法語"
|
||||
|
||||
#: pretix/_base_settings.py:90
|
||||
#: pretix/_base_settings.py:91
|
||||
msgid "Finnish"
|
||||
msgstr "芬蘭語"
|
||||
|
||||
#: pretix/_base_settings.py:91
|
||||
#: pretix/_base_settings.py:92
|
||||
msgid "Galician"
|
||||
msgstr "加利西亞語"
|
||||
|
||||
#: pretix/_base_settings.py:92
|
||||
#: pretix/_base_settings.py:93
|
||||
msgid "Greek"
|
||||
msgstr "希臘語"
|
||||
|
||||
#: pretix/_base_settings.py:93
|
||||
#: pretix/_base_settings.py:94
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:94
|
||||
#: pretix/_base_settings.py:95
|
||||
msgid "Italian"
|
||||
msgstr "義大利語"
|
||||
|
||||
#: pretix/_base_settings.py:95
|
||||
#: pretix/_base_settings.py:96
|
||||
msgid "Latvian"
|
||||
msgstr "拉脫維亞語"
|
||||
|
||||
#: pretix/_base_settings.py:96
|
||||
#: pretix/_base_settings.py:97
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:97
|
||||
#: pretix/_base_settings.py:98
|
||||
msgid "Polish"
|
||||
msgstr "波蘭語"
|
||||
|
||||
#: pretix/_base_settings.py:98
|
||||
#: pretix/_base_settings.py:99
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr "葡萄牙語 (葡萄牙)"
|
||||
|
||||
#: pretix/_base_settings.py:99
|
||||
#: pretix/_base_settings.py:100
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr "葡萄牙語(巴西)"
|
||||
|
||||
#: pretix/_base_settings.py:100
|
||||
#: pretix/_base_settings.py:101
|
||||
msgid "Romanian"
|
||||
msgstr "羅馬尼亞語"
|
||||
|
||||
#: pretix/_base_settings.py:101
|
||||
#: pretix/_base_settings.py:102
|
||||
msgid "Russian"
|
||||
msgstr "俄語"
|
||||
|
||||
#: pretix/_base_settings.py:102
|
||||
#: pretix/_base_settings.py:103
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:103
|
||||
#: pretix/_base_settings.py:104
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/_base_settings.py:104
|
||||
#: pretix/_base_settings.py:105
|
||||
msgid "Spanish"
|
||||
msgstr "西班牙語"
|
||||
|
||||
#: pretix/_base_settings.py:105
|
||||
#: pretix/_base_settings.py:106
|
||||
msgid "Turkish"
|
||||
msgstr "土耳其語"
|
||||
|
||||
#: pretix/_base_settings.py:106
|
||||
#: pretix/_base_settings.py:107
|
||||
msgid "Ukrainian"
|
||||
msgstr "烏克蘭語"
|
||||
|
||||
@@ -389,22 +389,22 @@ msgid ""
|
||||
"account."
|
||||
msgstr "應用程序“{application_name}”已獲得訪問您帳戶的授權。"
|
||||
|
||||
#: pretix/api/views/order.py:602 pretix/control/views/orders.py:1584
|
||||
#: pretix/api/views/order.py:603 pretix/control/views/orders.py:1584
|
||||
#: pretix/presale/views/order.py:741 pretix/presale/views/order.py:814
|
||||
msgid "You cannot generate an invoice for this order."
|
||||
msgstr "您無法為此訂單產生發票。"
|
||||
|
||||
#: pretix/api/views/order.py:607 pretix/control/views/orders.py:1586
|
||||
#: pretix/api/views/order.py:608 pretix/control/views/orders.py:1586
|
||||
#: pretix/presale/views/order.py:743 pretix/presale/views/order.py:816
|
||||
msgid "An invoice for this order already exists."
|
||||
msgstr "此訂單的發票已存在。"
|
||||
|
||||
#: pretix/api/views/order.py:633 pretix/control/views/orders.py:1712
|
||||
#: pretix/api/views/order.py:634 pretix/control/views/orders.py:1712
|
||||
#: pretix/control/views/users.py:143
|
||||
msgid "There was an error sending the mail. Please try again later."
|
||||
msgstr "發送郵件時發生錯誤。請稍後重試。"
|
||||
|
||||
#: pretix/api/views/order.py:711 pretix/base/services/cart.py:215
|
||||
#: pretix/api/views/order.py:712 pretix/base/services/cart.py:215
|
||||
#: pretix/base/services/orders.py:186 pretix/presale/views/order.py:798
|
||||
msgid "One of the selected products is not available in the selected country."
|
||||
msgstr "所選產品之一在所選國家無法使用。"
|
||||
@@ -1616,6 +1616,8 @@ msgstr "活躍"
|
||||
#: pretix/base/exporters/items.py:72 pretix/base/models/discount.py:73
|
||||
#: pretix/control/forms/event.py:969 pretix/control/navigation.py:506
|
||||
#: pretix/control/templates/pretixcontrol/organizers/channels.html:6
|
||||
#: pretix/plugins/autocheckin/models.py:64
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:30
|
||||
msgid "Sales channels"
|
||||
msgstr "銷售管道"
|
||||
|
||||
@@ -2660,6 +2662,9 @@ msgstr "預設為報告時間。"
|
||||
#: pretix/control/templates/pretixcontrol/organizers/devices.html:147
|
||||
#: pretix/control/templates/pretixcontrol/organizers/teams.html:61
|
||||
#: pretix/control/templates/pretixcontrol/organizers/webhooks.html:52
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:43
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:62
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:76
|
||||
#: pretix/plugins/reports/accountingreport.py:104
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:67
|
||||
msgid "All"
|
||||
@@ -3789,14 +3794,10 @@ msgstr "銷售管道自動簽到"
|
||||
|
||||
#: pretix/base/models/checkin.py:105
|
||||
msgid ""
|
||||
"All items on this check-in list will be automatically marked as checked-in "
|
||||
"when purchased through any of the selected sales channels. This option can "
|
||||
"be useful when tickets sold at the box office are not checked again before "
|
||||
"entry and should be considered validated directly upon purchase."
|
||||
"This option is deprecated and will be removed in the next months. As a "
|
||||
"replacement, our new plugin \"Auto check-in\" can be used. When we remove "
|
||||
"this option, we will automatically migrate your event to use the new plugin."
|
||||
msgstr ""
|
||||
"通過任何選定的銷售管道購買時,此簽到清單上的所有商品將自動標記為已簽到。當在"
|
||||
"售票處出售的票在入場前未再次檢查時,此選項可能很有用,並且應在購買時直接視為"
|
||||
"驗證。"
|
||||
|
||||
#: pretix/base/models/checkin.py:340
|
||||
msgid "Entry"
|
||||
@@ -4919,6 +4920,9 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:8
|
||||
#: pretix/control/templates/pretixcontrol/items/questions.html:26
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:49
|
||||
#: pretix/plugins/autocheckin/forms.py:56
|
||||
#: pretix/plugins/autocheckin/models.py:72
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:31
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:32
|
||||
msgid "Products"
|
||||
msgstr "商品"
|
||||
@@ -5310,6 +5314,7 @@ msgid "Item"
|
||||
msgstr "物品"
|
||||
|
||||
#: pretix/base/models/items.py:2007 pretix/control/forms/item.py:847
|
||||
#: pretix/plugins/autocheckin/models.py:74
|
||||
msgid "Variations"
|
||||
msgstr "類別"
|
||||
|
||||
@@ -9255,9 +9260,9 @@ msgstr "同一商品的每件電子郵件位址的最大條目數"
|
||||
msgid ""
|
||||
"With an increased limit, a customer may request more than one ticket for a "
|
||||
"specific product using the same, unique email address. However, regardless "
|
||||
"of this setting, they will need to fill the waiting list form multiple times if "
|
||||
"they want more than one ticket, as every entry only grants one single ticket "
|
||||
"at a time."
|
||||
"of this setting, they will need to fill the waiting list form multiple times "
|
||||
"if they want more than one ticket, as every entry only grants one single "
|
||||
"ticket at a time."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1493
|
||||
@@ -13048,6 +13053,10 @@ msgstr "終止日期"
|
||||
#: pretix/control/templates/pretixcontrol/checkin/checkins.html:64
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:10
|
||||
#: pretix/control/templates/pretixcontrol/checkin/list_edit.html:25
|
||||
#: pretix/plugins/autocheckin/forms.py:179
|
||||
#: pretix/plugins/autocheckin/forms.py:183
|
||||
#: pretix/plugins/autocheckin/models.py:46
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:29
|
||||
#: pretix/plugins/checkinlists/exporters.py:80
|
||||
#: pretix/plugins/checkinlists/exporters.py:153
|
||||
#: pretix/plugins/checkinlists/exporters.py:472
|
||||
@@ -16118,6 +16127,8 @@ msgstr "設定新密碼"
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:80
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/bulk.html:140
|
||||
#: pretix/control/templates/pretixcontrol/vouchers/detail.html:126
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:29
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:29
|
||||
#: pretix/plugins/returnurl/templates/returnurl/settings.html:24
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_create.html:61
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:87
|
||||
@@ -16493,6 +16504,7 @@ msgstr[0] "是否確實要刪除簽到清單 <strong>%(name)s</strong>?"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:12
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:33
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/transfer.html:16
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:12
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:13
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/pay.html:40
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_delete.html:12
|
||||
@@ -16543,6 +16555,7 @@ msgstr "取消"
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete.html:15
|
||||
#: pretix/control/templates/pretixcontrol/waitinglist/delete_bulk.html:36
|
||||
#: pretix/control/views/orders.py:357
|
||||
#: 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
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/delete.html:15
|
||||
@@ -16902,6 +16915,7 @@ msgid "Connected devices"
|
||||
msgstr "連接設備"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/checkin/lists.html:104
|
||||
#: pretix/plugins/autocheckin/apps.py:30 pretix/plugins/autocheckin/apps.py:33
|
||||
msgid "Automated check-in"
|
||||
msgstr "自動登記"
|
||||
|
||||
@@ -16910,6 +16924,7 @@ msgstr "自動登記"
|
||||
#: pretix/control/templates/pretixcontrol/items/discounts.html:149
|
||||
#: pretix/control/templates/pretixcontrol/items/index.html:156
|
||||
#: pretix/control/templates/pretixcontrol/items/quotas.html:96
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:89
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:72
|
||||
#: pretix/plugins/ticketoutputpdf/templates/pretixplugins/ticketoutputpdf/index.html:69
|
||||
msgid "Clone"
|
||||
@@ -17959,8 +17974,8 @@ msgstr ""
|
||||
#: pretix/control/views/organizer.py:3169 pretix/control/views/subevents.py:525
|
||||
#: pretix/control/views/subevents.py:1590 pretix/control/views/user.py:235
|
||||
#: pretix/control/views/users.py:112 pretix/control/views/vouchers.py:304
|
||||
#: pretix/plugins/badges/views.py:154 pretix/plugins/sendmail/views.py:668
|
||||
#: pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/autocheckin/views.py:164 pretix/plugins/badges/views.py:154
|
||||
#: pretix/plugins/sendmail/views.py:668 pretix/plugins/stripe/views.py:679
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:172
|
||||
#: pretix/presale/views/customer.py:476 pretix/presale/views/customer.py:528
|
||||
msgid "Your changes have been saved."
|
||||
@@ -24214,8 +24229,10 @@ msgstr "新的簽入清單已建立。"
|
||||
#: pretix/control/views/subevents.py:1492 pretix/control/views/user.py:357
|
||||
#: pretix/control/views/vouchers.py:276 pretix/control/views/vouchers.py:350
|
||||
#: pretix/control/views/vouchers.py:533 pretix/control/views/waitinglist.py:413
|
||||
#: pretix/plugins/badges/views.py:114 pretix/plugins/sendmail/views.py:597
|
||||
#: pretix/plugins/sendmail/views.py:674 pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/autocheckin/views.py:112
|
||||
#: pretix/plugins/autocheckin/views.py:174 pretix/plugins/badges/views.py:114
|
||||
#: pretix/plugins/sendmail/views.py:597 pretix/plugins/sendmail/views.py:674
|
||||
#: pretix/plugins/stripe/views.py:682
|
||||
#: pretix/plugins/ticketoutputpdf/views.py:132
|
||||
msgid "We could not save your changes. See below for details."
|
||||
msgstr "我們無法儲存你的更改。詳情見下文。"
|
||||
@@ -25850,17 +25867,8 @@ msgstr "已知網域"
|
||||
msgid "Known domains"
|
||||
msgstr "已知網域"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "徽章標誌圖片"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:34 pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/autocheckin/apps.py:34 pretix/plugins/badges/apps.py:34
|
||||
#: pretix/plugins/banktransfer/apps.py:35
|
||||
#: pretix/plugins/checkinlists/apps.py:48
|
||||
#: pretix/plugins/manualpayment/apps.py:34 pretix/plugins/paypal/apps.py:48
|
||||
#: pretix/plugins/paypal2/apps.py:35 pretix/plugins/pretixdroid/apps.py:34
|
||||
@@ -25871,6 +25879,173 @@ msgstr "徽章標誌圖片"
|
||||
msgid "the pretix team"
|
||||
msgstr "Pretix團隊"
|
||||
|
||||
#: pretix/plugins/autocheckin/apps.py:39
|
||||
msgid "Automatically check-in specific tickets after they have been sold."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:60
|
||||
#: pretix/plugins/autocheckin/models.py:82
|
||||
#, fuzzy
|
||||
#| msgid "All payment providers"
|
||||
msgid "Only including usage of payment providers"
|
||||
msgstr "所有的支付提供者"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:120
|
||||
#, fuzzy
|
||||
#| msgid "All actions"
|
||||
msgid "All variations"
|
||||
msgstr "所有行動"
|
||||
|
||||
#: pretix/plugins/autocheckin/forms.py:248
|
||||
msgid ""
|
||||
"When restricting by payment method, the rule should run after the payment "
|
||||
"was received."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:36
|
||||
#, fuzzy
|
||||
#| msgid "New order placed"
|
||||
msgid "After order was placed"
|
||||
msgstr "新訂單已下"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:37
|
||||
#, fuzzy
|
||||
#| msgid "Mark order as paid"
|
||||
msgid "After order was paid"
|
||||
msgstr "將訂單標記為已付款"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:48
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If you keep this empty, the ticket will be valid starting at the time of "
|
||||
#| "purchase."
|
||||
msgid ""
|
||||
"If you keep this empty, all lists that match the purchased product will be "
|
||||
"used."
|
||||
msgstr "如果您將其保留為空白,票將從購買時開始有效。"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:59
|
||||
#, fuzzy
|
||||
#| msgid "Sales channel"
|
||||
msgid "All sales channels"
|
||||
msgstr "銷售管道"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:69
|
||||
#, fuzzy
|
||||
#| msgid "Product variations"
|
||||
msgid "All products and variations"
|
||||
msgstr "其他種類商品"
|
||||
|
||||
#: pretix/plugins/autocheckin/models.py:78
|
||||
#, fuzzy
|
||||
#| msgid "Enable payment method"
|
||||
msgid "All payment methods"
|
||||
msgstr "啟用付款方式"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:47
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:13
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:13
|
||||
#, fuzzy
|
||||
#| msgid "Automated check-in"
|
||||
msgid "Auto check-in"
|
||||
msgstr "自動登記"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:70
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was created"
|
||||
msgid "An auto check-in rule was created"
|
||||
msgstr "已建立電子郵件規則"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:72
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was updated"
|
||||
msgid "An auto check-in rule was updated"
|
||||
msgstr "電子郵件規則已更新"
|
||||
|
||||
#: pretix/plugins/autocheckin/signals.py:75
|
||||
#, fuzzy
|
||||
#| msgid "An email rule was deleted"
|
||||
msgid "An auto check-in rule was deleted"
|
||||
msgstr "已刪除電子郵件規則"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Create auto check-in rule"
|
||||
msgstr "自訂簽到規則"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/add.html:18
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:18
|
||||
#, fuzzy
|
||||
#| msgctxt "discount"
|
||||
#| msgid "Condition"
|
||||
msgid "Conditions"
|
||||
msgstr "條件"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Delete check-in list"
|
||||
msgid "Delete auto-check-in rule"
|
||||
msgstr "刪除簽到清單"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/delete.html:9
|
||||
#, fuzzy
|
||||
#| msgid "Are you sure you want to delete the gate?"
|
||||
msgid "Are you sure you want to delete the auto check-in rule?"
|
||||
msgstr "是否確實要刪除閘門?"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:4
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/edit.html:6
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rule"
|
||||
msgstr "自訂簽到規則"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:5
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:7
|
||||
#, fuzzy
|
||||
#| msgid "Custom check-in rule"
|
||||
msgid "Auto check-in rules"
|
||||
msgstr "自訂簽到規則"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:11
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "你尚未建立任何規則。"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:17
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:22
|
||||
#, fuzzy
|
||||
#| msgid "Create a new check-in list"
|
||||
msgid "Create a new check-in rule"
|
||||
msgstr "建立新的簽到清單"
|
||||
|
||||
#: pretix/plugins/autocheckin/templates/pretixplugins/autocheckin/index.html:32
|
||||
#, fuzzy
|
||||
#| msgid "Payment method"
|
||||
msgid "Payment methods"
|
||||
msgstr "支付方式"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:119 pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "你的規則已建立。"
|
||||
|
||||
#: pretix/plugins/autocheckin/views.py:209 pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "選取規則已刪除。"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:30 pretix/plugins/badges/apps.py:33
|
||||
#: pretix/plugins/badges/signals.py:55
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/control_order_info.html:7
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/delete.html:6
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:4
|
||||
#: pretix/plugins/badges/templates/pretixplugins/badges/index.html:6
|
||||
msgid "Badges"
|
||||
msgstr "徽章標誌圖片"
|
||||
|
||||
#: pretix/plugins/badges/apps.py:38
|
||||
msgid ""
|
||||
"Automatically generate badges or name tags for your attendees. You can "
|
||||
@@ -28288,10 +28463,6 @@ msgstr "檢查計劃時間"
|
||||
msgid "Use as a template for a new rule"
|
||||
msgstr "用作新日期的範本"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_list.html:96
|
||||
msgid "You haven't created any rules yet."
|
||||
msgstr "你尚未建立任何規則。"
|
||||
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:5
|
||||
#: pretix/plugins/sendmail/templates/pretixplugins/sendmail/rule_update.html:7
|
||||
msgid "Update Email Rule"
|
||||
@@ -28367,14 +28538,6 @@ msgid "%(number)s waiting list entry"
|
||||
msgid_plural "%(number)s waiting list entries"
|
||||
msgstr[0] "%(number)s的等待名單條目%(number)s的等待名單條目"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:626
|
||||
msgid "Your rule has been created."
|
||||
msgstr "你的規則已建立。"
|
||||
|
||||
#: pretix/plugins/sendmail/views.py:755
|
||||
msgid "The selected rule has been deleted."
|
||||
msgstr "選取規則已刪除。"
|
||||
|
||||
#: pretix/plugins/statistics/apps.py:30 pretix/plugins/statistics/apps.py:33
|
||||
#: pretix/plugins/statistics/signals.py:37
|
||||
#: pretix/plugins/statistics/templates/pretixplugins/statistics/index.html:8
|
||||
@@ -32401,6 +32564,16 @@ msgstr "寫入權限"
|
||||
msgid "Kosovo"
|
||||
msgstr "柯索沃"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "All items on this check-in list will be automatically marked as checked-"
|
||||
#~ "in when purchased through any of the selected sales channels. This option "
|
||||
#~ "can be useful when tickets sold at the box office are not checked again "
|
||||
#~ "before entry and should be considered validated directly upon purchase."
|
||||
#~ msgstr ""
|
||||
#~ "通過任何選定的銷售管道購買時,此簽到清單上的所有商品將自動標記為已簽到。當"
|
||||
#~ "在售票處出售的票在入場前未再次檢查時,此選項可能很有用,並且應在購買時直接"
|
||||
#~ "視為驗證。"
|
||||
|
||||
#~ msgid "Unknown sales channel."
|
||||
#~ msgstr "未知的銷售管道。"
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
@@ -0,0 +1,140 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
from django.core.exceptions import ValidationError
|
||||
from django_filters.rest_framework import DjangoFilterBackend
|
||||
from rest_framework import serializers, viewsets
|
||||
|
||||
from pretix.api.pagination import TotalOrderingFilter
|
||||
from pretix.api.serializers.i18n import I18nAwareModelSerializer
|
||||
from pretix.base.models import ItemVariation
|
||||
from pretix.plugins.autocheckin.models import AutoCheckinRule
|
||||
from pretix.plugins.sendmail.models import Rule
|
||||
|
||||
|
||||
class AutoCheckinRuleSerializer(I18nAwareModelSerializer):
|
||||
|
||||
class Meta:
|
||||
model = AutoCheckinRule
|
||||
fields = [
|
||||
"id",
|
||||
"list",
|
||||
"mode",
|
||||
"all_sales_channels",
|
||||
"limit_sales_channels",
|
||||
"all_products",
|
||||
"limit_products",
|
||||
"limit_variations",
|
||||
"all_payment_methods",
|
||||
"limit_payment_methods",
|
||||
]
|
||||
read_only_fields = ["id"]
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
self.fields["limit_sales_channels"].child_relation.queryset = self.context[
|
||||
"event"
|
||||
].organizer.sales_channels.all()
|
||||
self.fields["limit_products"].child_relation.queryset = self.context[
|
||||
"event"
|
||||
].items.all()
|
||||
self.fields["limit_variations"].child_relation.queryset = (
|
||||
ItemVariation.objects.filter(item__event=self.context["event"])
|
||||
)
|
||||
self.fields["limit_payment_methods"] = serializers.MultipleChoiceField(
|
||||
choices=[
|
||||
(f.identifier, f.verbose_name)
|
||||
for f in self.context["event"].get_payment_providers().values()
|
||||
],
|
||||
required=False,
|
||||
allow_empty=True,
|
||||
)
|
||||
|
||||
def validate(self, data):
|
||||
data = super().validate(data)
|
||||
|
||||
full_data = (
|
||||
self.to_internal_value(self.to_representation(self.instance))
|
||||
if self.instance
|
||||
else {}
|
||||
)
|
||||
full_data.update(data)
|
||||
|
||||
if full_data.get("mode") == AutoCheckinRule.MODE_PLACED and not full_data.get(
|
||||
"all_payment_methods"
|
||||
):
|
||||
raise ValidationError("all_payment_methods should be used for mode=placed")
|
||||
|
||||
if isinstance(full_data.get("limit_payment_methods"), set):
|
||||
full_data["limit_payment_methods"] = list(
|
||||
full_data["limit_payment_methods"]
|
||||
)
|
||||
|
||||
return full_data
|
||||
|
||||
def save(self, **kwargs):
|
||||
return super().save(event=self.context["request"].event)
|
||||
|
||||
|
||||
class RuleViewSet(viewsets.ModelViewSet):
|
||||
queryset = Rule.objects.none()
|
||||
serializer_class = AutoCheckinRuleSerializer
|
||||
filter_backends = (DjangoFilterBackend, TotalOrderingFilter)
|
||||
ordering = ("id",)
|
||||
ordering_fields = ("id",)
|
||||
permission = "can_change_event_settings"
|
||||
|
||||
def get_queryset(self):
|
||||
return AutoCheckinRule.objects.filter(event=self.request.event)
|
||||
|
||||
def get_serializer_context(self):
|
||||
return {
|
||||
**super().get_serializer_context(),
|
||||
"event": self.request.event,
|
||||
}
|
||||
|
||||
def perform_create(self, serializer):
|
||||
super().perform_create(serializer)
|
||||
serializer.instance.log_action(
|
||||
"pretix.plugins.autocheckin.rule.added",
|
||||
user=self.request.user,
|
||||
auth=self.request.auth,
|
||||
data=self.request.data,
|
||||
)
|
||||
|
||||
def perform_update(self, serializer):
|
||||
super().perform_update(serializer)
|
||||
serializer.instance.log_action(
|
||||
"pretix.plugins.autocheckin.rule.changed",
|
||||
user=self.request.user,
|
||||
auth=self.request.auth,
|
||||
data=self.request.data,
|
||||
)
|
||||
|
||||
def perform_destroy(self, instance):
|
||||
instance.log_action(
|
||||
"pretix.plugins.autocheckin.rule.deleted",
|
||||
user=self.request.user,
|
||||
auth=self.request.auth,
|
||||
data=self.request.data,
|
||||
)
|
||||
super().perform_destroy(instance)
|
||||
@@ -0,0 +1,43 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
from django.apps import AppConfig
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from pretix import __version__ as version
|
||||
|
||||
|
||||
class AutoCheckinApp(AppConfig):
|
||||
name = "pretix.plugins.autocheckin"
|
||||
verbose_name = _("Automated check-in")
|
||||
|
||||
class PretixPluginMeta:
|
||||
name = _("Automated check-in")
|
||||
author = _("the pretix team")
|
||||
version = version
|
||||
experimental = False
|
||||
category = "FEATURE"
|
||||
description = _(
|
||||
"Automatically check-in specific tickets after they have been sold."
|
||||
)
|
||||
|
||||
def ready(self):
|
||||
from . import signals # NOQA
|
||||
@@ -0,0 +1,253 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
# This file is based on an earlier version of pretix which was released under the Apache License 2.0. The full text of
|
||||
# the Apache License 2.0 can be obtained at <http://www.apache.org/licenses/LICENSE-2.0>.
|
||||
#
|
||||
# This file may have since been changed and any changes are released under the terms of AGPLv3 as described above. A
|
||||
# full history of changes and contributors is available at <https://github.com/pretix/pretix>.
|
||||
#
|
||||
# This file contains Apache-licensed contributions copyrighted by: Alexey Kislitsin, Daniel, Flavia Bastos, Sanket
|
||||
# Dasgupta, Sohalt, pajowu
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software distributed under the Apache License 2.0 is
|
||||
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
# License for the specific language governing permissions and limitations under the License.
|
||||
|
||||
from django import forms
|
||||
from django.core.exceptions import ValidationError
|
||||
from django.urls import reverse
|
||||
from django.utils.html import escape
|
||||
from django.utils.safestring import mark_safe
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from django_scopes.forms import (
|
||||
SafeModelChoiceField, SafeModelMultipleChoiceField,
|
||||
)
|
||||
|
||||
from pretix.base.models import ItemVariation
|
||||
from pretix.control.forms import SalesChannelCheckboxSelectMultiple
|
||||
from pretix.control.forms.widgets import Select2
|
||||
from pretix.plugins.autocheckin.models import AutoCheckinRule
|
||||
|
||||
from pretix.base.services.placeholders import FormPlaceholderMixin # noqa
|
||||
|
||||
|
||||
class AutoCheckinRuleForm(forms.ModelForm):
|
||||
itemvars = forms.MultipleChoiceField(
|
||||
label=_("Products"),
|
||||
required=False,
|
||||
)
|
||||
limit_payment_methods = forms.MultipleChoiceField(
|
||||
label=_("Only including usage of payment providers"),
|
||||
choices=[],
|
||||
required=False,
|
||||
widget=forms.RadioSelect,
|
||||
)
|
||||
|
||||
class Meta:
|
||||
model = AutoCheckinRule
|
||||
|
||||
fields = [
|
||||
"list",
|
||||
"mode",
|
||||
"all_sales_channels",
|
||||
"limit_sales_channels",
|
||||
"all_products",
|
||||
"all_payment_methods",
|
||||
]
|
||||
field_classes = {
|
||||
"mode": forms.RadioSelect,
|
||||
"list": SafeModelChoiceField,
|
||||
"limit_sales_channels": SafeModelMultipleChoiceField,
|
||||
}
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
self.event = kwargs.pop("event")
|
||||
self.instance = kwargs.get("instance", None)
|
||||
|
||||
initial = kwargs.get("initial", {})
|
||||
if self.instance and self.instance.pk and "itemvars" not in initial:
|
||||
initial["itemvars"] = [
|
||||
str(i.pk) for i in self.instance.limit_products.all()
|
||||
] + [
|
||||
"{}-{}".format(v.item_id, v.pk)
|
||||
for v in self.instance.limit_variations.all()
|
||||
]
|
||||
if (
|
||||
self.instance
|
||||
and self.instance.pk
|
||||
and "limit_payment_methods" not in initial
|
||||
):
|
||||
initial["limit_payment_methods"] = self.instance.limit_payment_methods
|
||||
kwargs["initial"] = initial
|
||||
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
self.fields["limit_sales_channels"].queryset = (
|
||||
self.event.organizer.sales_channels.all()
|
||||
)
|
||||
self.fields["limit_sales_channels"].widget = SalesChannelCheckboxSelectMultiple(
|
||||
self.event,
|
||||
attrs={
|
||||
"data-inverse-dependency": "<[name$=all_sales_channels]",
|
||||
"class": "scrolling-multiple-choice",
|
||||
},
|
||||
choices=self.fields["limit_sales_channels"].widget.choices,
|
||||
)
|
||||
|
||||
choices = []
|
||||
for item in self.event.items.all():
|
||||
if len(item.variations.all()) > 0:
|
||||
allvars = _("All variations")
|
||||
choices.append(
|
||||
(
|
||||
"{}".format(item.pk),
|
||||
(
|
||||
f"{item} – {allvars}"
|
||||
if item.active
|
||||
else mark_safe(
|
||||
f'<strike class="text-muted">{escape(item)} – {allvars}</strike>'
|
||||
)
|
||||
),
|
||||
)
|
||||
)
|
||||
else:
|
||||
choices.append(
|
||||
(
|
||||
"{}".format(item.pk),
|
||||
(
|
||||
str(item)
|
||||
if item.active
|
||||
else mark_safe(
|
||||
f'<strike class="text-muted">{escape(item)}</strike>'
|
||||
)
|
||||
),
|
||||
)
|
||||
)
|
||||
for v in item.variations.all():
|
||||
choices.append(
|
||||
(
|
||||
"{}-{}".format(item.pk, v.pk),
|
||||
(
|
||||
"{} – {}".format(item, v.value)
|
||||
if item.active
|
||||
else mark_safe(
|
||||
f'<strike class="text-muted">{escape(item)} – {escape(v.value)}</strike>'
|
||||
)
|
||||
),
|
||||
)
|
||||
)
|
||||
|
||||
self.fields["itemvars"].widget = forms.CheckboxSelectMultiple(
|
||||
attrs={
|
||||
"data-inverse-dependency": "<[name$=all_products]",
|
||||
"class": "scrolling-multiple-choice",
|
||||
},
|
||||
)
|
||||
self.fields["itemvars"].choices = choices
|
||||
|
||||
self.fields["list"].queryset = self.event.checkin_lists.all()
|
||||
self.fields["list"].widget = Select2(
|
||||
attrs={
|
||||
"data-model-select2": "generic",
|
||||
"data-select2-url": reverse(
|
||||
"control:event.orders.checkinlists.select2",
|
||||
kwargs={
|
||||
"event": self.event.slug,
|
||||
"organizer": self.event.organizer.slug,
|
||||
},
|
||||
),
|
||||
"data-placeholder": _("Check-in list"),
|
||||
}
|
||||
)
|
||||
self.fields["list"].widget.choices = self.fields["list"].choices
|
||||
self.fields["list"].label = _("Check-in list")
|
||||
|
||||
self.fields["list"].widget.choices = self.fields["list"].choices
|
||||
|
||||
self.fields["limit_payment_methods"].choices += [
|
||||
(p.identifier, p.verbose_name)
|
||||
for p in self.event.get_payment_providers().values()
|
||||
]
|
||||
self.fields["limit_payment_methods"].widget = forms.CheckboxSelectMultiple(
|
||||
attrs={
|
||||
"data-inverse-dependency": "<[name$=all_payment_methods]",
|
||||
"class": "scrolling-multiple-choice",
|
||||
},
|
||||
choices=self.fields["limit_payment_methods"].choices,
|
||||
)
|
||||
|
||||
def save(self, *args, **kwargs):
|
||||
creating = not self.instance.pk
|
||||
|
||||
self.instance.limit_payment_methods = (
|
||||
self.cleaned_data.get("limit_payment_methods") or []
|
||||
)
|
||||
|
||||
inst = super().save(*args, **kwargs)
|
||||
|
||||
selected_items = set(
|
||||
list(
|
||||
self.event.items.filter(
|
||||
id__in=[i for i in self.cleaned_data["itemvars"] if "-" not in i]
|
||||
)
|
||||
)
|
||||
)
|
||||
selected_variations = list(
|
||||
ItemVariation.objects.filter(
|
||||
item__event=self.event,
|
||||
id__in=[
|
||||
i.split("-")[1] for i in self.cleaned_data["itemvars"] if "-" in i
|
||||
],
|
||||
)
|
||||
)
|
||||
|
||||
current_items = [] if creating else self.instance.limit_products.all()
|
||||
current_variations = [] if creating else self.instance.limit_variations.all()
|
||||
|
||||
self.instance.limit_products.remove(
|
||||
*[i for i in current_items if i not in selected_items]
|
||||
)
|
||||
self.instance.limit_products.add(
|
||||
*[i for i in selected_items if i not in current_items]
|
||||
)
|
||||
self.instance.limit_variations.remove(
|
||||
*[i for i in current_variations if i not in selected_variations]
|
||||
)
|
||||
self.instance.limit_variations.add(
|
||||
*[i for i in selected_variations if i not in current_variations]
|
||||
)
|
||||
return inst
|
||||
|
||||
def clean(self):
|
||||
d = super().clean()
|
||||
|
||||
if d["mode"] == AutoCheckinRule.MODE_PLACED and not d["all_payment_methods"]:
|
||||
raise ValidationError(
|
||||
{
|
||||
"mode": _(
|
||||
"When restricting by payment method, the rule should run after the payment was received."
|
||||
)
|
||||
}
|
||||
)
|
||||
|
||||
return d
|
||||
@@ -0,0 +1,61 @@
|
||||
# Generated by Django 4.2.14 on 2024-07-24 08:36
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
import pretix.base.models.fields
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
("pretixbase", "0269_order_api_meta"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name="AutoCheckinRule",
|
||||
fields=[
|
||||
(
|
||||
"id",
|
||||
models.BigAutoField(
|
||||
auto_created=True, primary_key=True, serialize=False
|
||||
),
|
||||
),
|
||||
("mode", models.CharField(default="placed", max_length=100)),
|
||||
("all_sales_channels", models.BooleanField(default=True)),
|
||||
("all_products", models.BooleanField(default=True)),
|
||||
("all_payment_methods", models.BooleanField(default=True)),
|
||||
(
|
||||
"limit_payment_methods",
|
||||
pretix.base.models.fields.MultiStringField(null=True),
|
||||
),
|
||||
(
|
||||
"event",
|
||||
models.ForeignKey(
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
to="pretixbase.event",
|
||||
),
|
||||
),
|
||||
("limit_products", models.ManyToManyField(to="pretixbase.item")),
|
||||
(
|
||||
"limit_sales_channels",
|
||||
models.ManyToManyField(to="pretixbase.saleschannel"),
|
||||
),
|
||||
(
|
||||
"limit_variations",
|
||||
models.ManyToManyField(to="pretixbase.itemvariation"),
|
||||
),
|
||||
(
|
||||
"list",
|
||||
models.ForeignKey(
|
||||
null=True,
|
||||
on_delete=django.db.models.deletion.CASCADE,
|
||||
to="pretixbase.checkinlist",
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,85 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
from django.db import models
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from pretix.base.models import (
|
||||
CheckinList, Event, Item, ItemVariation, LoggedModel, SalesChannel,
|
||||
)
|
||||
from pretix.base.models.fields import MultiStringField
|
||||
|
||||
|
||||
class AutoCheckinRule(LoggedModel):
|
||||
MODE_PLACED = "placed"
|
||||
MODE_PAID = "paid"
|
||||
MODE_CHOICES = (
|
||||
(MODE_PLACED, _("After order was placed")),
|
||||
(MODE_PAID, _("After order was paid")),
|
||||
)
|
||||
|
||||
event = models.ForeignKey(Event, on_delete=models.CASCADE)
|
||||
list = models.ForeignKey(
|
||||
CheckinList,
|
||||
on_delete=models.CASCADE,
|
||||
null=True,
|
||||
blank=True,
|
||||
verbose_name=_("Check-in list"),
|
||||
help_text=_(
|
||||
"If you keep this empty, all lists that match the purchased product will be used."
|
||||
),
|
||||
)
|
||||
|
||||
mode = models.CharField(
|
||||
max_length=100,
|
||||
choices=MODE_CHOICES,
|
||||
default=MODE_PLACED,
|
||||
)
|
||||
|
||||
all_sales_channels = models.BooleanField(
|
||||
verbose_name=_("All sales channels"),
|
||||
default=True,
|
||||
)
|
||||
limit_sales_channels = models.ManyToManyField(
|
||||
SalesChannel,
|
||||
verbose_name=_("Sales channels"),
|
||||
blank=True,
|
||||
)
|
||||
|
||||
all_products = models.BooleanField(
|
||||
verbose_name=_("All products and variations"),
|
||||
default=True,
|
||||
)
|
||||
limit_products = models.ManyToManyField(Item, verbose_name=_("Products"), blank=True)
|
||||
limit_variations = models.ManyToManyField(
|
||||
ItemVariation, blank=True, verbose_name=_("Variations")
|
||||
)
|
||||
|
||||
all_payment_methods = models.BooleanField(
|
||||
verbose_name=_("All payment methods"),
|
||||
default=True,
|
||||
)
|
||||
limit_payment_methods = MultiStringField(
|
||||
verbose_name=_("Only including usage of payment providers"),
|
||||
null=True,
|
||||
blank=True,
|
||||
)
|
||||
@@ -0,0 +1,201 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-2021 rami.io GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
import copy
|
||||
|
||||
from django.db.models import Q
|
||||
from django.dispatch import receiver
|
||||
from django.urls import reverse
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
from pretix.base.models import Checkin, OrderPayment
|
||||
from pretix.base.signals import (
|
||||
checkin_created, event_copy_data, item_copy_data, logentry_display,
|
||||
order_paid, order_placed,
|
||||
)
|
||||
from pretix.control.signals import nav_event
|
||||
from pretix.plugins.autocheckin.models import AutoCheckinRule
|
||||
|
||||
|
||||
@receiver(nav_event, dispatch_uid="autocheckin_nav_event")
|
||||
def nav_event_receiver(sender, request, **kwargs):
|
||||
url = request.resolver_match
|
||||
if not request.user.has_event_permission(
|
||||
request.organizer, request.event, "can_change_event_settings", request=request
|
||||
):
|
||||
return []
|
||||
return [
|
||||
{
|
||||
"label": _("Auto check-in"),
|
||||
"url": reverse(
|
||||
"plugins:autocheckin:index",
|
||||
kwargs={
|
||||
"event": request.event.slug,
|
||||
"organizer": request.organizer.slug,
|
||||
},
|
||||
),
|
||||
"parent": reverse(
|
||||
"control:event.orders.checkinlists",
|
||||
kwargs={
|
||||
"event": request.event.slug,
|
||||
"organizer": request.event.organizer.slug,
|
||||
},
|
||||
),
|
||||
"active": url.namespace == "plugins:autocheckin",
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
@receiver(signal=logentry_display)
|
||||
def logentry_display_receiver(sender, logentry, **kwargs):
|
||||
plains = {
|
||||
"pretix.plugins.autocheckin.rule.added": _("An auto check-in rule was created"),
|
||||
"pretix.plugins.autocheckin.rule.changed": _(
|
||||
"An auto check-in rule was updated"
|
||||
),
|
||||
"pretix.plugins.autocheckin.rule.deleted": _(
|
||||
"An auto check-in rule was deleted"
|
||||
),
|
||||
}
|
||||
if logentry.action_type in plains:
|
||||
return plains[logentry.action_type]
|
||||
|
||||
|
||||
@receiver(item_copy_data, dispatch_uid="autocheckin_item_copy")
|
||||
def item_copy_data_receiver(sender, source, target, **kwargs):
|
||||
for acr in AutoCheckinRule.objects.filter(limit_products=source):
|
||||
acr.limit_products.add(target)
|
||||
|
||||
|
||||
@receiver(signal=event_copy_data, dispatch_uid="autocheckin_copy_data")
|
||||
def event_copy_data_receiver(
|
||||
sender, other, item_map, variation_map, checkin_list_map, **kwargs
|
||||
):
|
||||
for acr in other.autocheckinrule_set.all():
|
||||
if acr.list and acr.list.subevent:
|
||||
continue # Impossible to copy
|
||||
|
||||
oldacr = acr
|
||||
|
||||
acr = copy.copy(acr)
|
||||
acr.pk = None
|
||||
acr.event = sender
|
||||
|
||||
if acr.list_id:
|
||||
acr.list = checkin_list_map[acr.list_id]
|
||||
|
||||
acr.save()
|
||||
|
||||
if not acr.all_sales_channels:
|
||||
acr.limit_sales_channels.set(
|
||||
sender.organizer.sales_channels.filter(
|
||||
identifier__in=oldacr.limit_sales_channels.values_list(
|
||||
"identifier", flat=True
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
if not acr.all_products:
|
||||
acr.limit_products.set([item_map[o.pk] for o in oldacr.limit_products.all()])
|
||||
acr.limit_variations.set(
|
||||
[variation_map[o.pk] for o in oldacr.limit_variations.all()]
|
||||
)
|
||||
|
||||
|
||||
def perform_auto_checkin(sender, order, mode, payment_methods):
|
||||
positions = list(order.positions.all())
|
||||
payment_q = Q(all_payment_methods=True)
|
||||
for p in payment_methods:
|
||||
payment_q = payment_q | Q(limit_payment_methods__contains=p)
|
||||
|
||||
rules = list(
|
||||
sender.autocheckinrule_set.filter(
|
||||
Q(all_sales_channels=True) | Q(limit_sales_channels=order.sales_channel_id),
|
||||
Q(all_products=True)
|
||||
| Q(limit_products__in=[op.item_id for op in positions])
|
||||
| Q(limit_variations__in=[op.variation_id for op in positions]),
|
||||
payment_q,
|
||||
mode=mode,
|
||||
)
|
||||
.distinct()
|
||||
.select_related("list")
|
||||
.prefetch_related("limit_products", "limit_variations")
|
||||
)
|
||||
|
||||
if any(r.list is None for r in rules):
|
||||
all_lists = sender.checkin_lists.filter(
|
||||
Q(subevent__isnull=True)
|
||||
| Q(subevent__in=[op.subevent_id for op in positions])
|
||||
).prefetch_related("limit_products")
|
||||
else:
|
||||
all_lists = []
|
||||
|
||||
for r in rules:
|
||||
r_item_ids = {i.pk for i in r.limit_products.all()}
|
||||
r_variation_ids = {v.pk for v in r.limit_variations.all()}
|
||||
if r.list is not None:
|
||||
lists = [r.list]
|
||||
else:
|
||||
lists = all_lists
|
||||
|
||||
for cl in lists:
|
||||
for op in positions:
|
||||
if not cl.all_products and op.item_id not in {
|
||||
i.pk for i in cl.limit_products.all()
|
||||
}:
|
||||
continue
|
||||
|
||||
if not (r.all_products or op.item_id in r_item_ids or op.variation_id in r_variation_ids):
|
||||
continue
|
||||
|
||||
if cl.subevent_id and cl.subevent_id != op.subevent_id:
|
||||
continue
|
||||
|
||||
ci, created = Checkin.objects.get_or_create(
|
||||
position=op,
|
||||
list=cl,
|
||||
auto_checked_in=True,
|
||||
type=Checkin.TYPE_ENTRY,
|
||||
)
|
||||
if created:
|
||||
checkin_created.send(sender, checkin=ci)
|
||||
|
||||
|
||||
@receiver(order_placed, dispatch_uid="autocheckin_order_placed")
|
||||
def order_placed_receiver(sender, order, **kwargs):
|
||||
mode = AutoCheckinRule.MODE_PLACED
|
||||
payment_methods = set()
|
||||
perform_auto_checkin(sender, order, mode, payment_methods)
|
||||
|
||||
|
||||
@receiver(order_paid, dispatch_uid="autocheckin_order_paid")
|
||||
def order_paid_receiver(sender, order, **kwargs):
|
||||
mode = AutoCheckinRule.MODE_PAID
|
||||
payment_methods = {
|
||||
p.provider
|
||||
for p in order.payments.filter(
|
||||
state__in=[
|
||||
OrderPayment.PAYMENT_STATE_CONFIRMED,
|
||||
OrderPayment.PAYMENT_STATE_REFUNDED,
|
||||
]
|
||||
)
|
||||
}
|
||||
perform_auto_checkin(sender, order, mode, payment_methods)
|
||||
@@ -0,0 +1,34 @@
|
||||
{% extends "pretixcontrol/event/base.html" %}
|
||||
{% load i18n %}
|
||||
{% load bootstrap3 %}
|
||||
{% block title %}{% trans "Create auto check-in rule" %}{% endblock %}
|
||||
{% block content %}
|
||||
<h1>{% trans "Create auto check-in rule" %}</h1>
|
||||
{% block inner %}
|
||||
<form class="form-horizontal" method="post" action="" enctype="multipart/form-data">
|
||||
{% csrf_token %}
|
||||
{% bootstrap_form_errors form %}
|
||||
|
||||
<fieldset>
|
||||
<legend>{% trans "Auto check-in" %}</legend>
|
||||
{% bootstrap_field form.mode layout='control' %}
|
||||
{% bootstrap_field form.list layout='control' %}
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<legend>{% trans "Conditions" %}</legend>
|
||||
{% bootstrap_field form.all_sales_channels layout='control' %}
|
||||
{% bootstrap_field form.limit_sales_channels layout='control' %}
|
||||
{% bootstrap_field form.all_products layout='control' %}
|
||||
{% bootstrap_field form.itemvars layout='control' %}
|
||||
{% bootstrap_field form.all_payment_methods layout='control' %}
|
||||
{% bootstrap_field form.limit_payment_methods layout='control' %}
|
||||
</fieldset>
|
||||
|
||||
<div class="form-group submit-group">
|
||||
<button type="submit" class="btn btn-primary btn-save">
|
||||
{% trans "Save" %}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user