forked from CGM_Public/pretix_original
Compare commits
51
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a18318bae1 | ||
|
|
b539f5e2f2 | ||
|
|
a18eb3be70 | ||
|
|
ac59bbff5d | ||
|
|
69f3e938f2 | ||
|
|
a0c1903ce5 | ||
|
|
3c8b188352 | ||
|
|
76e3b39f8f | ||
|
|
662e2cd116 | ||
|
|
eeaa3bc2a9 | ||
|
|
bbe8247606 | ||
|
|
5c46c1d14f | ||
|
|
651b676cfc | ||
|
|
5ee62c551e | ||
|
|
50e79b51de | ||
|
|
6e24c20a7a | ||
|
|
481a242054 | ||
|
|
f923c2fed0 | ||
|
|
228448b00f | ||
|
|
603345762a | ||
|
|
1812a23860 | ||
|
|
45374d0c94 | ||
|
|
c5f823596e | ||
|
|
eebb0a3527 | ||
|
|
bac1e8faf6 | ||
|
|
5cf7654099 | ||
|
|
988ef53972 | ||
|
|
36d20a45dd | ||
|
|
0691af7aa4 | ||
|
|
6b5436b71a | ||
|
|
a06a693c5c | ||
|
|
7b58ddbfde | ||
|
|
f18fb02d0b | ||
|
|
3a185b1cbc | ||
|
|
ba2a9fbd93 | ||
|
|
a337cf8efa | ||
|
|
616cc42b9c | ||
|
|
08012c42f2 | ||
|
|
08368684b0 | ||
|
|
17200df0cd | ||
|
|
28d1bedfc4 | ||
|
|
af90db9d1e | ||
|
|
19c4089da9 | ||
|
|
71723935e1 | ||
|
|
e2ad8f2f74 | ||
|
|
f8580a2789 | ||
|
|
cfeaa502a3 | ||
|
|
0ee8d6e9c3 | ||
|
|
a0e5717f7d | ||
|
|
49097037da | ||
|
|
62a6a11836 |
@@ -14,10 +14,13 @@ on:
|
|||||||
- 'src/pretix/static/**'
|
- 'src/pretix/static/**'
|
||||||
- 'src/tests/**'
|
- 'src/tests/**'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read # to fetch code (actions/checkout)
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
spelling:
|
spelling:
|
||||||
name: Spellcheck
|
name: Spellcheck
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
@@ -31,7 +34,7 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-pip-
|
${{ runner.os }}-pip-
|
||||||
- name: Install system packages
|
- name: Install system packages
|
||||||
run: sudo apt update && sudo apt install enchant hunspell aspell-en
|
run: sudo apt update && sudo apt install enchant-2 hunspell aspell-en
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: pip3 install -Ur requirements.txt
|
run: pip3 install -Ur requirements.txt
|
||||||
working-directory: ./doc
|
working-directory: ./doc
|
||||||
|
|||||||
@@ -12,9 +12,12 @@ on:
|
|||||||
- 'doc/**'
|
- 'doc/**'
|
||||||
- 'src/pretix/locale/**'
|
- 'src/pretix/locale/**'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read # to fetch code (actions/checkout)
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
compile:
|
compile:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
name: Check gettext syntax
|
name: Check gettext syntax
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@@ -40,7 +43,7 @@ jobs:
|
|||||||
run: python manage.py compilejsi18n
|
run: python manage.py compilejsi18n
|
||||||
working-directory: ./src
|
working-directory: ./src
|
||||||
spelling:
|
spelling:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
name: Spellcheck
|
name: Spellcheck
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@@ -55,7 +58,7 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-pip-
|
${{ runner.os }}-pip-
|
||||||
- name: Install system packages
|
- name: Install system packages
|
||||||
run: sudo apt update && sudo apt install enchant hunspell hunspell-de-de aspell-en aspell-de
|
run: sudo apt update && sudo apt install enchant-2 hunspell hunspell-de-de aspell-en aspell-de
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: pip3 install -e ".[dev]"
|
run: pip3 install -e ".[dev]"
|
||||||
working-directory: ./src
|
working-directory: ./src
|
||||||
|
|||||||
@@ -12,10 +12,13 @@ on:
|
|||||||
- 'src/pretix/locale/**'
|
- 'src/pretix/locale/**'
|
||||||
- 'src/pretix/static/**'
|
- 'src/pretix/static/**'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read # to fetch code (actions/checkout)
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
isort:
|
isort:
|
||||||
name: isort
|
name: isort
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
@@ -36,7 +39,7 @@ jobs:
|
|||||||
working-directory: ./src
|
working-directory: ./src
|
||||||
flake:
|
flake:
|
||||||
name: flake8
|
name: flake8
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
@@ -57,7 +60,7 @@ jobs:
|
|||||||
working-directory: ./src
|
working-directory: ./src
|
||||||
licenseheader:
|
licenseheader:
|
||||||
name: licenseheaders
|
name: licenseheaders
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python 3.8
|
||||||
|
|||||||
@@ -12,23 +12,26 @@ on:
|
|||||||
- 'doc/**'
|
- 'doc/**'
|
||||||
- 'src/pretix/locale/**'
|
- 'src/pretix/locale/**'
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read # to fetch code (actions/checkout)
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
name: Tests
|
name: Tests
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.7", "3.8", "3.9"]
|
python-version: ["3.7", "3.9", "3.10"]
|
||||||
database: [sqlite, postgres, mysql]
|
database: [sqlite, postgres, mysql]
|
||||||
exclude:
|
exclude:
|
||||||
- database: mysql
|
- database: mysql
|
||||||
python-version: "3.8"
|
python-version: "3.10"
|
||||||
- database: mysql
|
- database: mysql
|
||||||
python-version: "3.9"
|
python-version: "3.9"
|
||||||
- database: sqlite
|
- database: sqlite
|
||||||
python-version: "3.7"
|
python-version: "3.7"
|
||||||
- database: sqlite
|
- database: sqlite
|
||||||
python-version: "3.8"
|
python-version: "3.10"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: getong/mariadb-action@v1.1
|
- uses: getong/mariadb-action@v1.1
|
||||||
@@ -55,7 +58,7 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-pip-
|
${{ runner.os }}-pip-
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: sudo apt update && sudo apt install gettext mariadb-client-10.3
|
run: sudo apt update && sudo apt install gettext mariadb-client
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: pip3 install -e ".[dev]" mysqlclient psycopg2-binary
|
run: pip3 install -e ".[dev]" mysqlclient psycopg2-binary
|
||||||
working-directory: ./src
|
working-directory: ./src
|
||||||
@@ -76,4 +79,4 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
file: src/coverage.xml
|
file: src/coverage.xml
|
||||||
fail_ci_if_error: true
|
fail_ci_if_error: true
|
||||||
if: matrix.database == 'postgres' && matrix.python-version == '3.8'
|
if: matrix.database == 'postgres' && matrix.python-version == '3.10'
|
||||||
|
|||||||
@@ -273,6 +273,15 @@ created datetime Date and time o
|
|||||||
comment string Reason for refund (shown to the customer in some cases, can be ``null``).
|
comment string Reason for refund (shown to the customer in some cases, can be ``null``).
|
||||||
execution_date datetime Date and time of completion of this refund (or ``null``)
|
execution_date datetime Date and time of completion of this refund (or ``null``)
|
||||||
provider string Identification string of the payment provider
|
provider string Identification string of the payment provider
|
||||||
|
details object Refund-specific information. This is a dictionary
|
||||||
|
with various fields that can be different between
|
||||||
|
payment providers, versions, payment states, etc. If
|
||||||
|
you read this field, you always need to be able to
|
||||||
|
deal with situations where values that you expect are
|
||||||
|
missing. Mostly, the field contains various IDs that
|
||||||
|
can be used for matching with other systems. If a
|
||||||
|
payment provider does not implement this feature,
|
||||||
|
the object is empty.
|
||||||
===================================== ========================== =======================================================
|
===================================== ========================== =======================================================
|
||||||
|
|
||||||
List of all orders
|
List of all orders
|
||||||
@@ -2324,6 +2333,7 @@ Order refund endpoints
|
|||||||
"created": "2017-12-01T10:00:00Z",
|
"created": "2017-12-01T10:00:00Z",
|
||||||
"execution_date": "2017-12-04T12:13:12Z",
|
"execution_date": "2017-12-04T12:13:12Z",
|
||||||
"comment": "Cancellation",
|
"comment": "Cancellation",
|
||||||
|
"details": {},
|
||||||
"provider": "banktransfer"
|
"provider": "banktransfer"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -2367,6 +2377,7 @@ Order refund endpoints
|
|||||||
"created": "2017-12-01T10:00:00Z",
|
"created": "2017-12-01T10:00:00Z",
|
||||||
"execution_date": "2017-12-04T12:13:12Z",
|
"execution_date": "2017-12-04T12:13:12Z",
|
||||||
"comment": "Cancellation",
|
"comment": "Cancellation",
|
||||||
|
"details": {},
|
||||||
"provider": "banktransfer"
|
"provider": "banktransfer"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2424,6 +2435,7 @@ Order refund endpoints
|
|||||||
"created": "2017-12-01T10:00:00Z",
|
"created": "2017-12-01T10:00:00Z",
|
||||||
"execution_date": null,
|
"execution_date": null,
|
||||||
"comment": "Cancellation",
|
"comment": "Cancellation",
|
||||||
|
"details": {},
|
||||||
"provider": "manual"
|
"provider": "manual"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -126,6 +126,8 @@ The provider class
|
|||||||
|
|
||||||
.. automethod:: api_payment_details
|
.. automethod:: api_payment_details
|
||||||
|
|
||||||
|
.. automethod:: api_refund_details
|
||||||
|
|
||||||
.. automethod:: matching_id
|
.. automethod:: matching_id
|
||||||
|
|
||||||
.. automethod:: shred_payment_info
|
.. automethod:: shred_payment_info
|
||||||
|
|||||||
@@ -553,12 +553,22 @@ class OrderPaymentSerializer(I18nAwareModelSerializer):
|
|||||||
'details')
|
'details')
|
||||||
|
|
||||||
|
|
||||||
|
class RefundDetailsField(serializers.Field):
|
||||||
|
def to_representation(self, value: OrderRefund):
|
||||||
|
pp = value.payment_provider
|
||||||
|
if not pp:
|
||||||
|
return {}
|
||||||
|
return pp.api_refund_details(value)
|
||||||
|
|
||||||
|
|
||||||
class OrderRefundSerializer(I18nAwareModelSerializer):
|
class OrderRefundSerializer(I18nAwareModelSerializer):
|
||||||
payment = SlugRelatedField(slug_field='local_id', read_only=True)
|
payment = SlugRelatedField(slug_field='local_id', read_only=True)
|
||||||
|
details = RefundDetailsField(source='*', allow_null=True, read_only=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = OrderRefund
|
model = OrderRefund
|
||||||
fields = ('local_id', 'state', 'source', 'amount', 'payment', 'created', 'execution_date', 'comment', 'provider')
|
fields = ('local_id', 'state', 'source', 'amount', 'payment', 'created', 'execution_date', 'comment', 'provider',
|
||||||
|
'details')
|
||||||
|
|
||||||
|
|
||||||
class OrderURLField(serializers.URLField):
|
class OrderURLField(serializers.URLField):
|
||||||
|
|||||||
+29
-12
@@ -23,6 +23,7 @@ import logging
|
|||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
from io import BytesIO
|
from io import BytesIO
|
||||||
|
from itertools import groupby
|
||||||
from typing import Tuple
|
from typing import Tuple
|
||||||
|
|
||||||
import bleach
|
import bleach
|
||||||
@@ -554,31 +555,47 @@ class ClassicInvoiceRenderer(BaseReportlabInvoiceRenderer):
|
|||||||
pgettext('invoice', 'Amount'),
|
pgettext('invoice', 'Amount'),
|
||||||
)]
|
)]
|
||||||
|
|
||||||
|
def _group_key(line):
|
||||||
|
return (line.description, line.tax_rate, line.tax_name, line.net_value, line.gross_value, line.subevent_id,
|
||||||
|
line.event_date_from, line.event_date_to)
|
||||||
|
|
||||||
total = Decimal('0.00')
|
total = Decimal('0.00')
|
||||||
for line in self.invoice.lines.all():
|
for (description, tax_rate, tax_name, net_value, gross_value, *ignored), lines in groupby(self.invoice.lines.all(), key=_group_key):
|
||||||
|
lines = list(lines)
|
||||||
if has_taxes:
|
if has_taxes:
|
||||||
|
if len(lines) > 1:
|
||||||
|
single_price_line = pgettext('invoice', 'Single price: {net_price} net / {gross_price} gross').format(
|
||||||
|
net_price=money_filter(net_value, self.invoice.event.currency),
|
||||||
|
gross_price=money_filter(gross_value, self.invoice.event.currency),
|
||||||
|
)
|
||||||
|
description = description + "\n" + single_price_line
|
||||||
tdata.append((
|
tdata.append((
|
||||||
Paragraph(
|
Paragraph(
|
||||||
bleach.clean(line.description, tags=['br']).strip().replace('<br>', '<br/>').replace('\n', '<br />\n'),
|
bleach.clean(description, tags=['br']).strip().replace('<br>', '<br/>').replace('\n', '<br />\n'),
|
||||||
self.stylesheet['Normal']
|
self.stylesheet['Normal']
|
||||||
),
|
),
|
||||||
"1",
|
str(len(lines)),
|
||||||
localize(line.tax_rate) + " %",
|
localize(tax_rate) + " %",
|
||||||
money_filter(line.net_value, self.invoice.event.currency),
|
money_filter(net_value * len(lines), self.invoice.event.currency),
|
||||||
money_filter(line.gross_value, self.invoice.event.currency),
|
money_filter(gross_value * len(lines), self.invoice.event.currency),
|
||||||
))
|
))
|
||||||
else:
|
else:
|
||||||
|
if len(lines) > 1:
|
||||||
|
single_price_line = pgettext('invoice', 'Single price: {price}').format(
|
||||||
|
price=money_filter(gross_value, self.invoice.event.currency),
|
||||||
|
)
|
||||||
|
description = description + "\n" + single_price_line
|
||||||
tdata.append((
|
tdata.append((
|
||||||
Paragraph(
|
Paragraph(
|
||||||
bleach.clean(line.description, tags=['br']).strip().replace('<br>', '<br/>').replace('\n', '<br />\n'),
|
bleach.clean(description, tags=['br']).strip().replace('<br>', '<br/>').replace('\n', '<br />\n'),
|
||||||
self.stylesheet['Normal']
|
self.stylesheet['Normal']
|
||||||
),
|
),
|
||||||
"1",
|
str(len(lines)),
|
||||||
money_filter(line.gross_value, self.invoice.event.currency),
|
money_filter(gross_value * len(lines), self.invoice.event.currency),
|
||||||
))
|
))
|
||||||
taxvalue_map[line.tax_rate, line.tax_name] += line.tax_value
|
taxvalue_map[tax_rate, tax_name] += (gross_value - net_value) * len(lines)
|
||||||
grossvalue_map[line.tax_rate, line.tax_name] += line.gross_value
|
grossvalue_map[tax_rate, tax_name] += gross_value * len(lines)
|
||||||
total += line.gross_value
|
total += gross_value * len(lines)
|
||||||
|
|
||||||
if has_taxes:
|
if has_taxes:
|
||||||
tdata.append([
|
tdata.append([
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 3.2.16 on 2022-11-14 11:32
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('pretixbase', '0223_voucher_min_usages'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='eventmetaproperty',
|
||||||
|
name='filter_allowed',
|
||||||
|
field=models.BooleanField(default=True),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -1580,6 +1580,11 @@ class EventMetaProperty(LoggedModel):
|
|||||||
verbose_name=_("Valid values"),
|
verbose_name=_("Valid values"),
|
||||||
help_text=_("If you keep this empty, any value is allowed. Otherwise, enter one possible value per line.")
|
help_text=_("If you keep this empty, any value is allowed. Otherwise, enter one possible value per line.")
|
||||||
)
|
)
|
||||||
|
filter_allowed = models.BooleanField(
|
||||||
|
default=True, verbose_name=_("Can be used for filtering"),
|
||||||
|
help_text=_("This field will be shown to filter events or reports in the backend, and it can also be used "
|
||||||
|
"for hidden filter parameters in the frontend (e.g. using the widget).")
|
||||||
|
)
|
||||||
|
|
||||||
def full_clean(self, exclude=None, validate_unique=True):
|
def full_clean(self, exclude=None, validate_unique=True):
|
||||||
super().full_clean(exclude, validate_unique)
|
super().full_clean(exclude, validate_unique)
|
||||||
|
|||||||
@@ -581,18 +581,15 @@ class Item(LoggedModel):
|
|||||||
def tax(self, price=None, base_price_is='auto', currency=None, invoice_address=None, override_tax_rate=None, include_bundled=False):
|
def tax(self, price=None, base_price_is='auto', currency=None, invoice_address=None, override_tax_rate=None, include_bundled=False):
|
||||||
price = price if price is not None else self.default_price
|
price = price if price is not None else self.default_price
|
||||||
|
|
||||||
if not self.tax_rule:
|
bundled_sum = Decimal('0.00')
|
||||||
t = TaxedPrice(gross=price, net=price, tax=Decimal('0.00'),
|
bundled_sum_net = Decimal('0.00')
|
||||||
rate=Decimal('0.00'), name='')
|
bundled_sum_tax = Decimal('0.00')
|
||||||
else:
|
|
||||||
t = self.tax_rule.tax(price, base_price_is=base_price_is, invoice_address=invoice_address,
|
|
||||||
override_tax_rate=override_tax_rate, currency=currency or self.event.currency)
|
|
||||||
|
|
||||||
if include_bundled:
|
if include_bundled:
|
||||||
for b in self.bundles.all():
|
for b in self.bundles.all():
|
||||||
if b.designated_price and b.bundled_item.tax_rule_id != self.tax_rule_id:
|
if b.designated_price and b.bundled_item.tax_rule_id != self.tax_rule_id:
|
||||||
if b.bundled_variation:
|
if b.bundled_variation:
|
||||||
bprice = b.bundled_variation.tax(b.designated_price * b.count, base_price_is='gross',
|
bprice = b.bundled_variation.tax(b.designated_price * b.count,
|
||||||
|
base_price_is='gross',
|
||||||
invoice_address=invoice_address,
|
invoice_address=invoice_address,
|
||||||
currency=currency)
|
currency=currency)
|
||||||
else:
|
else:
|
||||||
@@ -600,17 +597,23 @@ class Item(LoggedModel):
|
|||||||
invoice_address=invoice_address,
|
invoice_address=invoice_address,
|
||||||
base_price_is='gross',
|
base_price_is='gross',
|
||||||
currency=currency)
|
currency=currency)
|
||||||
if not self.tax_rule:
|
bundled_sum += bprice.gross
|
||||||
compare_price = TaxedPrice(gross=b.designated_price * b.count, net=b.designated_price * b.count,
|
bundled_sum_net += bprice.net
|
||||||
tax=Decimal('0.00'), rate=Decimal('0.00'), name='')
|
bundled_sum_tax += bprice.tax
|
||||||
else:
|
|
||||||
compare_price = self.tax_rule.tax(b.designated_price * b.count,
|
if not self.tax_rule:
|
||||||
override_tax_rate=override_tax_rate,
|
t = TaxedPrice(gross=price - bundled_sum, net=price - bundled_sum, tax=Decimal('0.00'),
|
||||||
invoice_address=invoice_address,
|
rate=Decimal('0.00'), name='')
|
||||||
currency=currency)
|
else:
|
||||||
t.net += bprice.net - compare_price.net
|
t = self.tax_rule.tax(price, base_price_is=base_price_is, invoice_address=invoice_address,
|
||||||
t.tax += bprice.tax - compare_price.tax
|
override_tax_rate=override_tax_rate, currency=currency or self.event.currency,
|
||||||
t.name = "MIXED!"
|
subtract_from_gross=bundled_sum)
|
||||||
|
|
||||||
|
if bundled_sum:
|
||||||
|
t.name = "MIXED!"
|
||||||
|
t.gross += bundled_sum
|
||||||
|
t.net += bundled_sum_net
|
||||||
|
t.tax += bundled_sum_tax
|
||||||
|
|
||||||
return t
|
return t
|
||||||
|
|
||||||
|
|||||||
@@ -2737,6 +2737,7 @@ class CartPosition(AbstractPosition):
|
|||||||
tax_rule=self.item.tax_rule,
|
tax_rule=self.item.tax_rule,
|
||||||
invoice_address=invoice_address,
|
invoice_address=invoice_address,
|
||||||
bundled_sum=sum([b.price_after_voucher for b in bundled_positions]),
|
bundled_sum=sum([b.price_after_voucher for b in bundled_positions]),
|
||||||
|
is_bundled=self.is_bundled,
|
||||||
)
|
)
|
||||||
if line_price.gross != self.line_price_gross or line_price.rate != self.tax_rate:
|
if line_price.gross != self.line_price_gross or line_price.rate != self.tax_rate:
|
||||||
self.line_price_gross = line_price.gross
|
self.line_price_gross = line_price.gross
|
||||||
|
|||||||
@@ -877,6 +877,15 @@ class BasePaymentProvider:
|
|||||||
"""
|
"""
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
|
def api_refund_details(self, refund: OrderRefund):
|
||||||
|
"""
|
||||||
|
Will be called to populate the ``details`` parameter of the refund in the REST API.
|
||||||
|
|
||||||
|
:param refund: The refund in question.
|
||||||
|
:return: A serializable dictionary
|
||||||
|
"""
|
||||||
|
return {}
|
||||||
|
|
||||||
def matching_id(self, payment: OrderPayment):
|
def matching_id(self, payment: OrderPayment):
|
||||||
"""
|
"""
|
||||||
Will be called to get an ID for matching this payment when comparing pretix records with records of an external
|
Will be called to get an ID for matching this payment when comparing pretix records with records of an external
|
||||||
@@ -959,6 +968,9 @@ class BoxOfficeProvider(BasePaymentProvider):
|
|||||||
"payment_data": payment.info_data.get('payment_data', {}),
|
"payment_data": payment.info_data.get('payment_data', {}),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def api_refund_details(self, refund: OrderRefund):
|
||||||
|
return self.api_payment_details(refund)
|
||||||
|
|
||||||
def payment_control_render(self, request, payment) -> str:
|
def payment_control_render(self, request, payment) -> str:
|
||||||
if not payment.info:
|
if not payment.info:
|
||||||
return
|
return
|
||||||
@@ -1191,6 +1203,9 @@ class GiftCardPayment(BasePaymentProvider):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def api_refund_details(self, refund: OrderRefund):
|
||||||
|
return self.api_payment_details(refund)
|
||||||
|
|
||||||
def payment_partial_refund_supported(self, payment: OrderPayment) -> bool:
|
def payment_partial_refund_supported(self, payment: OrderPayment) -> bool:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|||||||
@@ -453,12 +453,15 @@ class CartManager:
|
|||||||
if cp.is_bundled:
|
if cp.is_bundled:
|
||||||
bundle = cp.addon_to.item.bundles.filter(bundled_item=cp.item, bundled_variation=cp.variation).first()
|
bundle = cp.addon_to.item.bundles.filter(bundled_item=cp.item, bundled_variation=cp.variation).first()
|
||||||
if bundle:
|
if bundle:
|
||||||
listed_price = bundle.designated_price or 0
|
listed_price = bundle.designated_price or Decimal('0.00')
|
||||||
else:
|
else:
|
||||||
listed_price = cp.price
|
listed_price = cp.price
|
||||||
price_after_voucher = listed_price
|
price_after_voucher = listed_price
|
||||||
else:
|
else:
|
||||||
listed_price = get_listed_price(cp.item, cp.variation, cp.subevent)
|
if cp.addon_to_id and is_included_for_free(cp.item, cp.addon_to):
|
||||||
|
listed_price = Decimal('0.00')
|
||||||
|
else:
|
||||||
|
listed_price = get_listed_price(cp.item, cp.variation, cp.subevent)
|
||||||
if cp.voucher:
|
if cp.voucher:
|
||||||
price_after_voucher = cp.voucher.calculate_price(listed_price)
|
price_after_voucher = cp.voucher.calculate_price(listed_price)
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -452,17 +452,19 @@ def build_preview_invoice_pdf(event):
|
|||||||
|
|
||||||
if event.tax_rules.exists():
|
if event.tax_rules.exists():
|
||||||
for i, tr in enumerate(event.tax_rules.all()):
|
for i, tr in enumerate(event.tax_rules.all()):
|
||||||
tax = tr.tax(Decimal('100.00'), base_price_is='gross')
|
for j in range(150):
|
||||||
InvoiceLine.objects.create(
|
tax = tr.tax(Decimal('100.00'), base_price_is='gross')
|
||||||
invoice=invoice, description=_("Sample product {}").format(i + 1),
|
InvoiceLine.objects.create(
|
||||||
gross_value=tax.gross, tax_value=tax.tax,
|
invoice=invoice, description=_("Sample product {}").format(i + 1),
|
||||||
tax_rate=tax.rate
|
gross_value=tax.gross, tax_value=tax.tax,
|
||||||
)
|
tax_rate=tax.rate
|
||||||
|
)
|
||||||
else:
|
else:
|
||||||
InvoiceLine.objects.create(
|
for i in range(150):
|
||||||
invoice=invoice, description=_("Sample product A"),
|
InvoiceLine.objects.create(
|
||||||
gross_value=100, tax_value=0, tax_rate=0
|
invoice=invoice, description=_("Sample product A"),
|
||||||
)
|
gross_value=100, tax_value=0, tax_rate=0
|
||||||
|
)
|
||||||
|
|
||||||
return event.invoice_renderer.generate(invoice)
|
return event.invoice_renderer.generate(invoice)
|
||||||
|
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ def get_listed_price(item: Item, variation: ItemVariation = None, subevent: SubE
|
|||||||
|
|
||||||
|
|
||||||
def get_line_price(price_after_voucher: Decimal, custom_price_input: Decimal, custom_price_input_is_net: bool,
|
def get_line_price(price_after_voucher: Decimal, custom_price_input: Decimal, custom_price_input_is_net: bool,
|
||||||
tax_rule: TaxRule, invoice_address: InvoiceAddress, bundled_sum: Decimal) -> TaxedPrice:
|
tax_rule: TaxRule, invoice_address: InvoiceAddress, bundled_sum: Decimal, is_bundled=False) -> TaxedPrice:
|
||||||
if not tax_rule:
|
if not tax_rule:
|
||||||
tax_rule = TaxRule(
|
tax_rule = TaxRule(
|
||||||
name='',
|
name='',
|
||||||
@@ -135,7 +135,8 @@ def get_line_price(price_after_voucher: Decimal, custom_price_input: Decimal, cu
|
|||||||
price = tax_rule.tax(max(custom_price_input, price.gross), base_price_is='gross', override_tax_rate=price.rate,
|
price = tax_rule.tax(max(custom_price_input, price.gross), base_price_is='gross', override_tax_rate=price.rate,
|
||||||
invoice_address=invoice_address, subtract_from_gross=bundled_sum)
|
invoice_address=invoice_address, subtract_from_gross=bundled_sum)
|
||||||
else:
|
else:
|
||||||
price = tax_rule.tax(price_after_voucher, invoice_address=invoice_address, subtract_from_gross=bundled_sum)
|
price = tax_rule.tax(price_after_voucher, invoice_address=invoice_address, subtract_from_gross=bundled_sum,
|
||||||
|
base_price_is='gross' if is_bundled else 'auto')
|
||||||
|
|
||||||
return price
|
return price
|
||||||
|
|
||||||
|
|||||||
@@ -806,7 +806,8 @@ class OrderSearchFilterForm(OrderFilterForm):
|
|||||||
# We ignore superuser permissions here. This is intentional – we do not want to show super
|
# We ignore superuser permissions here. This is intentional – we do not want to show super
|
||||||
# users a form with all meta properties ever assigned.
|
# users a form with all meta properties ever assigned.
|
||||||
return EventMetaProperty.objects.filter(
|
return EventMetaProperty.objects.filter(
|
||||||
organizer_id__in=self.request.user.teams.values_list('organizer', flat=True)
|
organizer_id__in=self.request.user.teams.values_list('organizer', flat=True),
|
||||||
|
filter_allowed=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@@ -1545,12 +1546,13 @@ class EventFilterForm(FilterForm):
|
|||||||
@cached_property
|
@cached_property
|
||||||
def meta_properties(self):
|
def meta_properties(self):
|
||||||
if self.organizer:
|
if self.organizer:
|
||||||
return self.organizer.meta_properties.all()
|
return self.organizer.meta_properties.filter(filter_allowed=True)
|
||||||
else:
|
else:
|
||||||
# We ignore superuser permissions here. This is intentional – we do not want to show super
|
# We ignore superuser permissions here. This is intentional – we do not want to show super
|
||||||
# users a form with all meta properties ever assigned.
|
# users a form with all meta properties ever assigned.
|
||||||
return EventMetaProperty.objects.filter(
|
return EventMetaProperty.objects.filter(
|
||||||
organizer_id__in=self.request.user.teams.values_list('organizer', flat=True)
|
organizer_id__in=self.request.user.teams.values_list('organizer', flat=True),
|
||||||
|
filter_allowed=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,9 @@ from decimal import Decimal
|
|||||||
from urllib.parse import urlencode
|
from urllib.parse import urlencode
|
||||||
|
|
||||||
from django import forms
|
from django import forms
|
||||||
|
from django.conf import settings
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
|
from django.core.files.uploadedfile import UploadedFile
|
||||||
from django.db.models import Max
|
from django.db.models import Max
|
||||||
from django.forms.formsets import DELETION_FIELD_NAME
|
from django.forms.formsets import DELETION_FIELD_NAME
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
@@ -61,7 +63,8 @@ from pretix.base.models import (
|
|||||||
from pretix.base.models.items import ItemAddOn, ItemBundle, ItemMetaValue
|
from pretix.base.models.items import ItemAddOn, ItemBundle, ItemMetaValue
|
||||||
from pretix.base.signals import item_copy_data
|
from pretix.base.signals import item_copy_data
|
||||||
from pretix.control.forms import (
|
from pretix.control.forms import (
|
||||||
ItemMultipleChoiceField, SplitDateTimeField, SplitDateTimePickerWidget,
|
ItemMultipleChoiceField, SizeValidationMixin, SplitDateTimeField,
|
||||||
|
SplitDateTimePickerWidget,
|
||||||
)
|
)
|
||||||
from pretix.control.forms.widgets import Select2
|
from pretix.control.forms.widgets import Select2
|
||||||
from pretix.helpers.models import modelcopy
|
from pretix.helpers.models import modelcopy
|
||||||
@@ -584,6 +587,14 @@ class ItemUpdateForm(I18nModelForm):
|
|||||||
)
|
)
|
||||||
return d
|
return d
|
||||||
|
|
||||||
|
def clean_picture(self):
|
||||||
|
value = self.cleaned_data.get('picture')
|
||||||
|
if isinstance(value, UploadedFile) and value.size > settings.FILE_UPLOAD_MAX_SIZE_IMAGE:
|
||||||
|
raise forms.ValidationError(_("Please do not upload files larger than {size}!").format(
|
||||||
|
size=SizeValidationMixin._sizeof_fmt(settings.FILE_UPLOAD_MAX_SIZE_IMAGE)
|
||||||
|
))
|
||||||
|
return value
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = Item
|
model = Item
|
||||||
localized_fields = '__all__'
|
localized_fields = '__all__'
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ class OrganizerUpdateForm(OrganizerForm):
|
|||||||
class EventMetaPropertyForm(forms.ModelForm):
|
class EventMetaPropertyForm(forms.ModelForm):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = EventMetaProperty
|
model = EventMetaProperty
|
||||||
fields = ['name', 'default', 'required', 'protected', 'allowed_values']
|
fields = ['name', 'default', 'required', 'protected', 'allowed_values', 'filter_allowed']
|
||||||
widgets = {
|
widgets = {
|
||||||
'default': forms.TextInput()
|
'default': forms.TextInput()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -118,10 +118,6 @@
|
|||||||
<button type="button" class="btn btn-default" data-formset-add>
|
<button type="button" class="btn btn-default" data-formset-add>
|
||||||
<i class="fa fa-plus"></i> {% trans "Add a new option" %}</button>
|
<i class="fa fa-plus"></i> {% trans "Add a new option" %}</button>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
|
||||||
{% trans "or add options from a csv file" %}
|
|
||||||
<input type="file" id="add-options-csv" accept=".csv" aria-label="{% trans "csv file with answer options" %}">
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|||||||
@@ -61,6 +61,7 @@ from pretix.base.forms.auth import (
|
|||||||
)
|
)
|
||||||
from pretix.base.models import TeamInvite, U2FDevice, User, WebAuthnDevice
|
from pretix.base.models import TeamInvite, U2FDevice, User, WebAuthnDevice
|
||||||
from pretix.base.services.mail import SendMailException
|
from pretix.base.services.mail import SendMailException
|
||||||
|
from pretix.helpers.http import redirect_to_url
|
||||||
from pretix.helpers.webauthn import generate_challenge
|
from pretix.helpers.webauthn import generate_challenge
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
@@ -81,7 +82,7 @@ def process_login(request, user, keep_logged_in):
|
|||||||
twofa_url = reverse('control:auth.login.2fa')
|
twofa_url = reverse('control:auth.login.2fa')
|
||||||
if next_url and url_has_allowed_host_and_scheme(next_url, allowed_hosts=None):
|
if next_url and url_has_allowed_host_and_scheme(next_url, allowed_hosts=None):
|
||||||
twofa_url += '?next=' + quote(next_url)
|
twofa_url += '?next=' + quote(next_url)
|
||||||
return redirect(twofa_url)
|
return redirect_to_url(twofa_url)
|
||||||
else:
|
else:
|
||||||
auth_login(request, user)
|
auth_login(request, user)
|
||||||
request.session['pretix_auth_login_time'] = int(time.time())
|
request.session['pretix_auth_login_time'] = int(time.time())
|
||||||
@@ -110,7 +111,7 @@ def login(request):
|
|||||||
if request.user.is_authenticated:
|
if request.user.is_authenticated:
|
||||||
next_url = backend.get_next_url(request) or 'control:index'
|
next_url = backend.get_next_url(request) or 'control:index'
|
||||||
if next_url and url_has_allowed_host_and_scheme(next_url, allowed_hosts=None):
|
if next_url and url_has_allowed_host_and_scheme(next_url, allowed_hosts=None):
|
||||||
return redirect(next_url)
|
return redirect_to_url(next_url)
|
||||||
return redirect(reverse('control:index'))
|
return redirect(reverse('control:index'))
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
form = LoginForm(backend=backend, data=request.POST, request=request)
|
form = LoginForm(backend=backend, data=request.POST, request=request)
|
||||||
@@ -136,8 +137,8 @@ def logout(request):
|
|||||||
if 'next' in request.GET and url_has_allowed_host_and_scheme(request.GET.get('next'), allowed_hosts=None):
|
if 'next' in request.GET and url_has_allowed_host_and_scheme(request.GET.get('next'), allowed_hosts=None):
|
||||||
next += '?next=' + quote(request.GET.get('next'))
|
next += '?next=' + quote(request.GET.get('next'))
|
||||||
if 'back' in request.GET and url_has_allowed_host_and_scheme(request.GET.get('back'), allowed_hosts=None):
|
if 'back' in request.GET and url_has_allowed_host_and_scheme(request.GET.get('back'), allowed_hosts=None):
|
||||||
return redirect(request.GET.get('back'))
|
return redirect_to_url(request.GET.get('back'))
|
||||||
return redirect(next)
|
return redirect_to_url(next)
|
||||||
|
|
||||||
|
|
||||||
def register(request):
|
def register(request):
|
||||||
@@ -443,7 +444,7 @@ class Login2FAView(TemplateView):
|
|||||||
del request.session['pretix_auth_2fa_user']
|
del request.session['pretix_auth_2fa_user']
|
||||||
del request.session['pretix_auth_2fa_time']
|
del request.session['pretix_auth_2fa_time']
|
||||||
if "next" in request.GET and url_has_allowed_host_and_scheme(request.GET.get("next"), allowed_hosts=None):
|
if "next" in request.GET and url_has_allowed_host_and_scheme(request.GET.get("next"), allowed_hosts=None):
|
||||||
return redirect(request.GET.get("next"))
|
return redirect_to_url(request.GET.get("next"))
|
||||||
return redirect(reverse('control:index'))
|
return redirect(reverse('control:index'))
|
||||||
else:
|
else:
|
||||||
messages.error(request, _('Invalid code, please try again.'))
|
messages.error(request, _('Invalid code, please try again.'))
|
||||||
|
|||||||
@@ -387,7 +387,7 @@ class EventPlugins(EventSettingsViewMixin, EventPermissionRequiredMixin, Templat
|
|||||||
if key.startswith("plugin:"):
|
if key.startswith("plugin:"):
|
||||||
module = key.split(":")[1]
|
module = key.split(":")[1]
|
||||||
if value == "enable" and module in plugins_available:
|
if value == "enable" and module in plugins_available:
|
||||||
if getattr(plugins_available[module], 'restricted', False):
|
if getattr(plugins_available[module].app, 'restricted', False):
|
||||||
if module not in request.event.settings.allowed_restricted_plugins:
|
if module not in request.event.settings.allowed_restricted_plugins:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|||||||
@@ -205,7 +205,7 @@ class OrganizerDetail(OrganizerDetailViewMixin, OrganizerPermissionRequiredMixin
|
|||||||
ctx = super().get_context_data(**kwargs)
|
ctx = super().get_context_data(**kwargs)
|
||||||
ctx['filter_form'] = self.filter_form
|
ctx['filter_form'] = self.filter_form
|
||||||
ctx['meta_fields'] = [
|
ctx['meta_fields'] = [
|
||||||
self.filter_form['meta_{}'.format(p.name)] for p in self.organizer.meta_properties.all()
|
self.filter_form['meta_{}'.format(p.name)] for p in self.organizer.meta_properties.filter(filter_allowed=True)
|
||||||
]
|
]
|
||||||
return ctx
|
return ctx
|
||||||
|
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ from pretix.control.permissions import (
|
|||||||
AdministratorPermissionRequiredMixin, StaffMemberRequiredMixin,
|
AdministratorPermissionRequiredMixin, StaffMemberRequiredMixin,
|
||||||
)
|
)
|
||||||
from pretix.control.views.auth import get_u2f_appid
|
from pretix.control.views.auth import get_u2f_appid
|
||||||
|
from pretix.helpers.http import redirect_to_url
|
||||||
from pretix.helpers.webauthn import generate_challenge, generate_ukey
|
from pretix.helpers.webauthn import generate_challenge, generate_ukey
|
||||||
|
|
||||||
REAL_DEVICE_TYPES = (TOTPDevice, WebAuthnDevice, U2FDevice)
|
REAL_DEVICE_TYPES = (TOTPDevice, WebAuthnDevice, U2FDevice)
|
||||||
@@ -138,7 +139,7 @@ class ReauthView(TemplateView):
|
|||||||
request.session['pretix_auth_last_used'] = t
|
request.session['pretix_auth_last_used'] = t
|
||||||
next_url = get_auth_backends()[request.user.auth_backend].get_next_url(request)
|
next_url = get_auth_backends()[request.user.auth_backend].get_next_url(request)
|
||||||
if next_url and url_has_allowed_host_and_scheme(next_url, allowed_hosts=None):
|
if next_url and url_has_allowed_host_and_scheme(next_url, allowed_hosts=None):
|
||||||
return redirect(next_url)
|
return redirect_to_url(next_url)
|
||||||
return redirect(reverse('control:index'))
|
return redirect(reverse('control:index'))
|
||||||
else:
|
else:
|
||||||
messages.error(request, _('The password you entered was invalid, please try again.'))
|
messages.error(request, _('The password you entered was invalid, please try again.'))
|
||||||
@@ -153,7 +154,7 @@ class ReauthView(TemplateView):
|
|||||||
request.session['pretix_auth_login_time'] = t
|
request.session['pretix_auth_login_time'] = t
|
||||||
request.session['pretix_auth_last_used'] = t
|
request.session['pretix_auth_last_used'] = t
|
||||||
if next_url and url_has_allowed_host_and_scheme(next_url, allowed_hosts=None):
|
if next_url and url_has_allowed_host_and_scheme(next_url, allowed_hosts=None):
|
||||||
return redirect(next_url)
|
return redirect_to_url(next_url)
|
||||||
return redirect(reverse('control:index'))
|
return redirect(reverse('control:index'))
|
||||||
return super().get(request, *args, **kwargs)
|
return super().get(request, *args, **kwargs)
|
||||||
|
|
||||||
@@ -749,7 +750,7 @@ class StartStaffSession(StaffMemberRequiredMixin, RecentAuthenticationRequiredMi
|
|||||||
)
|
)
|
||||||
|
|
||||||
if "next" in request.GET and url_has_allowed_host_and_scheme(request.GET.get("next"), allowed_hosts=None):
|
if "next" in request.GET and url_has_allowed_host_and_scheme(request.GET.get("next"), allowed_hosts=None):
|
||||||
return redirect(request.GET.get("next"))
|
return redirect_to_url(request.GET.get("next"))
|
||||||
else:
|
else:
|
||||||
return redirect(reverse("control:index"))
|
return redirect(reverse("control:index"))
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,9 @@
|
|||||||
# <https://www.gnu.org/licenses/>.
|
# <https://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.http import StreamingHttpResponse
|
from django.http import (
|
||||||
|
HttpResponsePermanentRedirect, HttpResponseRedirect, StreamingHttpResponse,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class ChunkBasedFileResponse(StreamingHttpResponse):
|
class ChunkBasedFileResponse(StreamingHttpResponse):
|
||||||
@@ -40,3 +42,8 @@ def get_client_ip(request):
|
|||||||
if x_forwarded_for:
|
if x_forwarded_for:
|
||||||
ip = x_forwarded_for.split(',')[0]
|
ip = x_forwarded_for.split(',')[0]
|
||||||
return ip
|
return ip
|
||||||
|
|
||||||
|
|
||||||
|
def redirect_to_url(to, permanent=False):
|
||||||
|
redirect_class = HttpResponsePermanentRedirect if permanent else HttpResponseRedirect
|
||||||
|
return redirect_class(to)
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 3.2.16 on 2022-11-21 17:22
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('pretixhelpers', '0002_auto_20180320_1219'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='thumbnail',
|
||||||
|
name='created',
|
||||||
|
field=models.DateTimeField(auto_now_add=True, null=True),
|
||||||
|
),
|
||||||
|
]
|
||||||
@@ -29,6 +29,7 @@ class Thumbnail(models.Model):
|
|||||||
source = models.CharField(max_length=255)
|
source = models.CharField(max_length=255)
|
||||||
size = models.CharField(max_length=255)
|
size = models.CharField(max_length=255)
|
||||||
thumb = models.FileField(upload_to='pub/thumbs/', max_length=255)
|
thumb = models.FileField(upload_to='pub/thumbs/', max_length=255)
|
||||||
|
created = models.DateTimeField(auto_now_add=True, null=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
unique_together = (('source', 'size'),)
|
unique_together = (('source', 'size'),)
|
||||||
|
|||||||
+1607
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-09-15 11:22+0000\n"
|
"PO-Revision-Date: 2021-09-15 11:22+0000\n"
|
||||||
"Last-Translator: Mohamed Tawfiq <mtawfiq@wafyapp.com>\n"
|
"Last-Translator: Mohamed Tawfiq <mtawfiq@wafyapp.com>\n"
|
||||||
"Language-Team: Arabic <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: Arabic <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -132,18 +132,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "المتابعة"
|
msgstr "المتابعة"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "جاري تأكيد الدفع الخاص بك …"
|
msgstr "جاري تأكيد الدفع الخاص بك …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -486,48 +486,48 @@ msgstr "الدقائق"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR الدخول"
|
msgstr "QR الدخول"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "لا يمكن تحميل ملف PDF الخلفية للأسباب التالية:"
|
msgstr "لا يمكن تحميل ملف PDF الخلفية للأسباب التالية:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "مجموعة من العناصر"
|
msgstr "مجموعة من العناصر"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "عنصر نص"
|
msgstr "عنصر نص"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "منطقة باركود"
|
msgstr "منطقة باركود"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "منطقة صورة"
|
msgstr "منطقة صورة"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "مدعوم من pretix"
|
msgstr "مدعوم من pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "عنصر"
|
msgstr "عنصر"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "تصميم التذكرة"
|
msgstr "تصميم التذكرة"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "فشلت عملية الحفظ."
|
msgstr "فشلت عملية الحفظ."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "حصل خطأ أثناء رفع ملف PDF الخاص بك، يرجى المحاولة مرة أخرى."
|
msgstr "حصل خطأ أثناء رفع ملف PDF الخاص بك، يرجى المحاولة مرة أخرى."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "هل تريد أن تغادر المحرر دون حفظ التعديلات؟"
|
msgstr "هل تريد أن تغادر المحرر دون حفظ التعديلات؟"
|
||||||
|
|
||||||
|
|||||||
+1598
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2020-12-19 07:00+0000\n"
|
"PO-Revision-Date: 2020-12-19 07:00+0000\n"
|
||||||
"Last-Translator: albert <albert.serra.monner@gmail.com>\n"
|
"Last-Translator: albert <albert.serra.monner@gmail.com>\n"
|
||||||
"Language-Team: Catalan <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Catalan <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -129,18 +129,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -469,48 +469,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Disseny del tiquet"
|
msgstr "Disseny del tiquet"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+1588
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-12-06 23:00+0000\n"
|
"PO-Revision-Date: 2021-12-06 23:00+0000\n"
|
||||||
"Last-Translator: Ondřej Sokol <osokol@treesoft.cz>\n"
|
"Last-Translator: Ondřej Sokol <osokol@treesoft.cz>\n"
|
||||||
"Language-Team: Czech <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: Czech <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -131,18 +131,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Pokračovat"
|
msgstr "Pokračovat"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Potvrzuji vaši platbu …"
|
msgstr "Potvrzuji vaši platbu …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -483,48 +483,48 @@ msgstr "minuty"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Check-in QR kód"
|
msgstr "Check-in QR kód"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Pozadí PDF nemohl být načten:"
|
msgstr "Pozadí PDF nemohl být načten:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Skupina objektů"
|
msgstr "Skupina objektů"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Textový objekt"
|
msgstr "Textový objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Oblast s QR kódem"
|
msgstr "Oblast s QR kódem"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Oblast obrazu"
|
msgstr "Oblast obrazu"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Poháněno společností pretix"
|
msgstr "Poháněno společností pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objekt"
|
msgstr "Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Design vstupenky"
|
msgstr "Design vstupenky"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Uložení se nepodařilo."
|
msgstr "Uložení se nepodařilo."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Při nahrávání souboru PDF došlo k problému, zkuste to prosím znovu."
|
msgstr "Při nahrávání souboru PDF došlo k problému, zkuste to prosím znovu."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Opravdu chcete opustit editor bez uložení změn?"
|
msgstr "Opravdu chcete opustit editor bez uložení změn?"
|
||||||
|
|
||||||
|
|||||||
+1591
-1499
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-04-01 13:36+0000\n"
|
"PO-Revision-Date: 2022-04-01 13:36+0000\n"
|
||||||
"Last-Translator: Anna-itk <abc@aarhus.dk>\n"
|
"Last-Translator: Anna-itk <abc@aarhus.dk>\n"
|
||||||
"Language-Team: Danish <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: Danish <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -130,7 +130,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -138,13 +138,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsæt"
|
msgstr "Fortsæt"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Bekræfter din betaling …"
|
msgstr "Bekræfter din betaling …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -511,50 +511,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Check-in QR"
|
msgstr "Check-in QR"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Baggrunds-pdf'en kunne ikke hentes af følgende grund:"
|
msgstr "Baggrunds-pdf'en kunne ikke hentes af følgende grund:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Gruppe af objekter"
|
msgstr "Gruppe af objekter"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Tekstobjekt"
|
msgstr "Tekstobjekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "QR-kode-område"
|
msgstr "QR-kode-område"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "QR-kode-område"
|
msgstr "QR-kode-område"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Drevet af pretix"
|
msgstr "Drevet af pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objekt"
|
msgstr "Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Billetdesign"
|
msgstr "Billetdesign"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Gem fejlede."
|
msgstr "Gem fejlede."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Fejl under upload af pdf. Prøv venligt igen."
|
msgstr "Fejl under upload af pdf. Prøv venligt igen."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Er du sikker på at du vil forlade editoren uden at gemme dine ændringer?"
|
"Er du sikker på at du vil forlade editoren uden at gemme dine ændringer?"
|
||||||
|
|||||||
+1802
-1916
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-26 08:58+0000\n"
|
"PO-Revision-Date: 2022-07-26 08:58+0000\n"
|
||||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||||
"Language-Team: German <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: German <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -129,18 +129,18 @@ msgstr "WeChat Pay"
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr "Mercado Pago"
|
msgstr "Mercado Pago"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortfahren"
|
msgstr "Fortfahren"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Zahlung wird bestätigt …"
|
msgstr "Zahlung wird bestätigt …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr "Zahlungsmethode nicht verfügbar"
|
msgstr "Zahlungsmethode nicht verfügbar"
|
||||||
|
|
||||||
@@ -484,49 +484,49 @@ msgstr "Minuten"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Check-in-QR-Code"
|
msgstr "Check-in-QR-Code"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Die Hintergrund-PDF-Datei konnte nicht geladen werden:"
|
msgstr "Die Hintergrund-PDF-Datei konnte nicht geladen werden:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Gruppe von Objekten"
|
msgstr "Gruppe von Objekten"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Text-Objekt"
|
msgstr "Text-Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "QR-Code-Bereich"
|
msgstr "QR-Code-Bereich"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Bildbereich"
|
msgstr "Bildbereich"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Event-Ticketshop von pretix"
|
msgstr "Event-Ticketshop von pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objekt"
|
msgstr "Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Ticket-Design"
|
msgstr "Ticket-Design"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Speichern fehlgeschlagen."
|
msgstr "Speichern fehlgeschlagen."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Es gab ein Problem beim Hochladen der PDF-Datei, bitte erneut versuchen."
|
"Es gab ein Problem beim Hochladen der PDF-Datei, bitte erneut versuchen."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Möchten Sie den Editor wirklich schließen ohne Ihre Änderungen zu speichern?"
|
"Möchten Sie den Editor wirklich schließen ohne Ihre Änderungen zu speichern?"
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-07-26 08:58+0000\n"
|
"PO-Revision-Date: 2022-07-26 08:58+0000\n"
|
||||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||||
"Language-Team: German (informal) <https://translate.pretix.eu/projects/"
|
"Language-Team: German (informal) <https://translate.pretix.eu/projects/"
|
||||||
@@ -129,18 +129,18 @@ msgstr "WeChat Pay"
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr "Mercado Pago"
|
msgstr "Mercado Pago"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortfahren"
|
msgstr "Fortfahren"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Zahlung wird bestätigt …"
|
msgstr "Zahlung wird bestätigt …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr "Zahlungsmethode nicht verfügbar"
|
msgstr "Zahlungsmethode nicht verfügbar"
|
||||||
|
|
||||||
@@ -483,49 +483,49 @@ msgstr "Minuten"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Check-in-QR-Code"
|
msgstr "Check-in-QR-Code"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Die Hintergrund-PDF-Datei konnte nicht geladen werden:"
|
msgstr "Die Hintergrund-PDF-Datei konnte nicht geladen werden:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Gruppe von Objekten"
|
msgstr "Gruppe von Objekten"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Text-Objekt"
|
msgstr "Text-Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "QR-Code-Bereich"
|
msgstr "QR-Code-Bereich"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Bildbereich"
|
msgstr "Bildbereich"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Event-Ticketshop von pretix"
|
msgstr "Event-Ticketshop von pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objekt"
|
msgstr "Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Ticket-Design"
|
msgstr "Ticket-Design"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Speichern fehlgeschlagen."
|
msgstr "Speichern fehlgeschlagen."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Es gab ein Problem beim Hochladen der PDF-Datei, bitte erneut versuchen."
|
"Es gab ein Problem beim Hochladen der PDF-Datei, bitte erneut versuchen."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Möchtest du den Editor wirklich schließen ohne Ihre Änderungen zu speichern?"
|
"Möchtest du den Editor wirklich schließen ohne Ihre Änderungen zu speichern?"
|
||||||
|
|||||||
+1585
-1503
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -128,18 +128,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -468,48 +468,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+1609
-1501
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2019-10-03 19:00+0000\n"
|
"PO-Revision-Date: 2019-10-03 19:00+0000\n"
|
||||||
"Last-Translator: Chris Spy <chrispiropoulou@hotmail.com>\n"
|
"Last-Translator: Chris Spy <chrispiropoulou@hotmail.com>\n"
|
||||||
"Language-Team: Greek <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: Greek <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -131,7 +131,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -139,13 +139,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Συνέχεια"
|
msgstr "Συνέχεια"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -518,51 +518,51 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Έλεγχος QR"
|
msgstr "Έλεγχος QR"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Το αρχείο φόντου PDF δεν ήταν δυνατό να φορτωθεί για τον ακόλουθο λόγο:"
|
"Το αρχείο φόντου PDF δεν ήταν δυνατό να φορτωθεί για τον ακόλουθο λόγο:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Ομάδα αντικειμένων"
|
msgstr "Ομάδα αντικειμένων"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Αντικείμενο κειμένου"
|
msgstr "Αντικείμενο κειμένου"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Περιοχή Barcode"
|
msgstr "Περιοχή Barcode"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Περιοχή Barcode"
|
msgstr "Περιοχή Barcode"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Υποστηρίζεται από το Pretix"
|
msgstr "Υποστηρίζεται από το Pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Αντικείμενο"
|
msgstr "Αντικείμενο"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Σχεδιασμός εισιτηρίων"
|
msgstr "Σχεδιασμός εισιτηρίων"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Η αποθήκευση απέτυχε."
|
msgstr "Η αποθήκευση απέτυχε."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Σφάλμα κατά τη μεταφόρτωση του αρχείου PDF, δοκιμάστε ξανά."
|
msgstr "Σφάλμα κατά τη μεταφόρτωση του αρχείου PDF, δοκιμάστε ξανά."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Θέλετε πραγματικά να αφήσετε τον επεξεργαστή χωρίς να αποθηκεύσετε τις "
|
"Θέλετε πραγματικά να αφήσετε τον επεξεργαστή χωρίς να αποθηκεύσετε τις "
|
||||||
|
|||||||
+1607
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-11-25 21:00+0000\n"
|
"PO-Revision-Date: 2021-11-25 21:00+0000\n"
|
||||||
"Last-Translator: Ismael Menéndez Fernández <ismael.menendez@balidea.com>\n"
|
"Last-Translator: Ismael Menéndez Fernández <ismael.menendez@balidea.com>\n"
|
||||||
"Language-Team: Spanish <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Spanish <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -131,18 +131,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Confirmando el pago…"
|
msgstr "Confirmando el pago…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -483,51 +483,51 @@ msgstr "minutos"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR de Chequeo"
|
msgstr "QR de Chequeo"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"El archivo PDF de fondo no ha podido ser cargado debido al siguiente motivo:"
|
"El archivo PDF de fondo no ha podido ser cargado debido al siguiente motivo:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Grupo de objetos"
|
msgstr "Grupo de objetos"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Objeto de texto"
|
msgstr "Objeto de texto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Área para código de barras"
|
msgstr "Área para código de barras"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Área de imagen"
|
msgstr "Área de imagen"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Proveído por pretix"
|
msgstr "Proveído por pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objeto"
|
msgstr "Objeto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Diseño del ticket"
|
msgstr "Diseño del ticket"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "El guardado falló."
|
msgstr "El guardado falló."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ha habido un error mientras se cargaba el archivo PDF, por favor, intente de "
|
"Ha habido un error mientras se cargaba el archivo PDF, por favor, intente de "
|
||||||
"nuevo."
|
"nuevo."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "¿Realmente desea salir del editor sin haber guardado sus cambios?"
|
msgstr "¿Realmente desea salir del editor sin haber guardado sus cambios?"
|
||||||
|
|
||||||
|
|||||||
+1595
-1503
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-11-10 05:00+0000\n"
|
"PO-Revision-Date: 2021-11-10 05:00+0000\n"
|
||||||
"Last-Translator: Jaakko Rinta-Filppula <jaakko@r-f.fi>\n"
|
"Last-Translator: Jaakko Rinta-Filppula <jaakko@r-f.fi>\n"
|
||||||
"Language-Team: Finnish <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Finnish <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -131,7 +131,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -139,13 +139,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Jatka"
|
msgstr "Jatka"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Maksuasi vahvistetaan …"
|
msgstr "Maksuasi vahvistetaan …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -487,50 +487,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Tekstiobjekti"
|
msgstr "Tekstiobjekti"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Viivakoodialue"
|
msgstr "Viivakoodialue"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Viivakoodialue"
|
msgstr "Viivakoodialue"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Tallennus epäonnistui."
|
msgstr "Tallennus epäonnistui."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+1606
-1524
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: French\n"
|
"Project-Id-Version: French\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-04-07 10:40+0000\n"
|
"PO-Revision-Date: 2022-04-07 10:40+0000\n"
|
||||||
"Last-Translator: Eva-Maria Obermann <obermann@rami.io>\n"
|
"Last-Translator: Eva-Maria Obermann <obermann@rami.io>\n"
|
||||||
"Language-Team: French <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: French <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -130,7 +130,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -138,13 +138,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuer"
|
msgstr "Continuer"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Confirmation de votre paiment…"
|
msgstr "Confirmation de votre paiment…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -511,53 +511,53 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Enregistrement QR code"
|
msgstr "Enregistrement QR code"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Le fichier PDF généré en arrière-plan n'a pas pu être chargé pour la raison "
|
"Le fichier PDF généré en arrière-plan n'a pas pu être chargé pour la raison "
|
||||||
"suivante :"
|
"suivante :"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Groupe d'objets"
|
msgstr "Groupe d'objets"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Objet texte"
|
msgstr "Objet texte"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Zone de code-barres"
|
msgstr "Zone de code-barres"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Zone de code-barres"
|
msgstr "Zone de code-barres"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Propulsé par pretix"
|
msgstr "Propulsé par pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objet"
|
msgstr "Objet"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Conception des billets"
|
msgstr "Conception des billets"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "L'enregistrement a échoué."
|
msgstr "L'enregistrement a échoué."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Erreur lors du téléchargement de votre fichier PDF, veuillez réessayer."
|
"Erreur lors du téléchargement de votre fichier PDF, veuillez réessayer."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Voulez-vous vraiment quitter l'éditeur sans sauvegarder vos modifications ?"
|
"Voulez-vous vraiment quitter l'éditeur sans sauvegarder vos modifications ?"
|
||||||
|
|||||||
+1591
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-02-22 22:00+0000\n"
|
"PO-Revision-Date: 2022-02-22 22:00+0000\n"
|
||||||
"Last-Translator: Ismael Menéndez Fernández <ismael.menendez@balidea.com>\n"
|
"Last-Translator: Ismael Menéndez Fernández <ismael.menendez@balidea.com>\n"
|
||||||
"Language-Team: Galician <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Galician <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -131,18 +131,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Confirmando o pagamento…"
|
msgstr "Confirmando o pagamento…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -483,49 +483,49 @@ msgstr "minutos"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR de validación"
|
msgstr "QR de validación"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "O arquivo PDF de fondo non se puido cargar polo motivo seguinte:"
|
msgstr "O arquivo PDF de fondo non se puido cargar polo motivo seguinte:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Grupo de obxectos"
|
msgstr "Grupo de obxectos"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Obxecto de texto"
|
msgstr "Obxecto de texto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Área para código de barras"
|
msgstr "Área para código de barras"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Área de imaxe"
|
msgstr "Área de imaxe"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Desenvolto por Pretix"
|
msgstr "Desenvolto por Pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Obxecto"
|
msgstr "Obxecto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Deseño do tícket"
|
msgstr "Deseño do tícket"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "O gardado fallou."
|
msgstr "O gardado fallou."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Houbo un erro mentres se cargaba o arquivo PDF. Por favor, inténteo de novo."
|
"Houbo un erro mentres se cargaba o arquivo PDF. Por favor, inténteo de novo."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Realmente desexa saír do editor sen gardar os cambios?"
|
msgstr "Realmente desexa saír do editor sen gardar os cambios?"
|
||||||
|
|
||||||
|
|||||||
+1585
-1503
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-09-24 13:54+0000\n"
|
"PO-Revision-Date: 2021-09-24 13:54+0000\n"
|
||||||
"Last-Translator: ofirtro <ofir.tro@gmail.com>\n"
|
"Last-Translator: ofirtro <ofir.tro@gmail.com>\n"
|
||||||
"Language-Team: Hebrew <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: Hebrew <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -130,18 +130,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "המשך"
|
msgstr "המשך"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "מאמת את התשלום שלך…"
|
msgstr "מאמת את התשלום שלך…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -472,48 +472,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+1585
-1503
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2020-01-24 08:00+0000\n"
|
"PO-Revision-Date: 2020-01-24 08:00+0000\n"
|
||||||
"Last-Translator: Prokaj Miklós <mixolid0@gmail.com>\n"
|
"Last-Translator: Prokaj Miklós <mixolid0@gmail.com>\n"
|
||||||
"Language-Team: Hungarian <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Hungarian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -131,7 +131,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -139,13 +139,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Folytatás"
|
msgstr "Folytatás"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "A fizetés megerősítése…"
|
msgstr "A fizetés megerősítése…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -511,50 +511,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Check in QR"
|
msgstr "Check in QR"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "A PDF háttér fájl nem tölthető be a következők miatt:"
|
msgstr "A PDF háttér fájl nem tölthető be a következők miatt:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "tárgy csoport"
|
msgstr "tárgy csoport"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Szöveg"
|
msgstr "Szöveg"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Vonalkód terület"
|
msgstr "Vonalkód terület"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Vonalkód terület"
|
msgstr "Vonalkód terület"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "pretix által működtetett"
|
msgstr "pretix által működtetett"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "objektum"
|
msgstr "objektum"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Jegy design"
|
msgstr "Jegy design"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Mentés sikertelen."
|
msgstr "Mentés sikertelen."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Hiba a PDF fájl feltöltése közben, próbálja újra."
|
msgstr "Hiba a PDF fájl feltöltése közben, próbálja újra."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Biztosan ki akar lépni a szerkesztőből a változtatások mentése nélkül?"
|
msgstr "Biztosan ki akar lépni a szerkesztőből a változtatások mentése nélkül?"
|
||||||
|
|
||||||
|
|||||||
+1586
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-05-08 19:00+0000\n"
|
"PO-Revision-Date: 2022-05-08 19:00+0000\n"
|
||||||
"Last-Translator: Emanuele Signoretta <signorettae@gmail.com>\n"
|
"Last-Translator: Emanuele Signoretta <signorettae@gmail.com>\n"
|
||||||
"Language-Team: Italian <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Italian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -133,18 +133,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continua"
|
msgstr "Continua"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Stiamo processando il tuo pagamento …"
|
msgstr "Stiamo processando il tuo pagamento …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -485,48 +485,48 @@ msgstr "minuti"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Check-in con QR"
|
msgstr "Check-in con QR"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Il file PDF di sfondo non può essere caricato per le seguenti ragioni:"
|
msgstr "Il file PDF di sfondo non può essere caricato per le seguenti ragioni:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Gruppo di oggetti"
|
msgstr "Gruppo di oggetti"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Oggetto testo"
|
msgstr "Oggetto testo"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Area codice a barra"
|
msgstr "Area codice a barra"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Area immagini"
|
msgstr "Area immagini"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Powered by Pretix"
|
msgstr "Powered by Pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Oggetto"
|
msgstr "Oggetto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Design biglietto"
|
msgstr "Design biglietto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Salvataggio fallito."
|
msgstr "Salvataggio fallito."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Errore durante il caricamento del tuo file PDF, prova di nuovo."
|
msgstr "Errore durante il caricamento del tuo file PDF, prova di nuovo."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Vuoi davvero abbandonare l'editor senza salvare le modifiche?"
|
msgstr "Vuoi davvero abbandonare l'editor senza salvare le modifiche?"
|
||||||
|
|
||||||
|
|||||||
+1587
-1503
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-15 00:00+0000\n"
|
"PO-Revision-Date: 2022-03-15 00:00+0000\n"
|
||||||
"Last-Translator: Yuriko Matsunami <y.matsunami@enobyte.com>\n"
|
"Last-Translator: Yuriko Matsunami <y.matsunami@enobyte.com>\n"
|
||||||
"Language-Team: Japanese <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Japanese <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -131,18 +131,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "次へ"
|
msgstr "次へ"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "お支払い内容の確認"
|
msgstr "お支払い内容の確認"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -482,48 +482,48 @@ msgstr "分"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "チェックイン用QRコード"
|
msgstr "チェックイン用QRコード"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "以下の理由によりPDFファイルの読み込みに失敗しました:"
|
msgstr "以下の理由によりPDFファイルの読み込みに失敗しました:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "オブジェクトグループ"
|
msgstr "オブジェクトグループ"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "テキストオブジェクト"
|
msgstr "テキストオブジェクト"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "バーコードエリア"
|
msgstr "バーコードエリア"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "画像エリア"
|
msgstr "画像エリア"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Pretixのイベントチケット売り場"
|
msgstr "Pretixのイベントチケット売り場"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "オブジェクト"
|
msgstr "オブジェクト"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "チケットのデザイン"
|
msgstr "チケットのデザイン"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "保存できませんでした。"
|
msgstr "保存できませんでした。"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "PDFのアップロード中に問題が発生しました。再試行してください。"
|
msgstr "PDFのアップロード中に問題が発生しました。再試行してください。"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "変更内容を保存せずに編集を終了しますか?"
|
msgstr "変更内容を保存せずに編集を終了しますか?"
|
||||||
|
|
||||||
|
|||||||
+1592
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-04-06 03:00+0000\n"
|
"PO-Revision-Date: 2022-04-06 03:00+0000\n"
|
||||||
"Last-Translator: Liga V <lerning_by_dreaming@gmx.de>\n"
|
"Last-Translator: Liga V <lerning_by_dreaming@gmx.de>\n"
|
||||||
"Language-Team: Latvian <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Latvian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -132,18 +132,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Turpināt"
|
msgstr "Turpināt"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Jūsu maksājums tiek apstrādāts …"
|
msgstr "Jūsu maksājums tiek apstrādāts …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -484,49 +484,49 @@ msgstr "minūtes"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Reģistrācijas QR"
|
msgstr "Reģistrācijas QR"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Fona PDF fails nevarēja ielādēties sekojoša iemesla dēļ:"
|
msgstr "Fona PDF fails nevarēja ielādēties sekojoša iemesla dēļ:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Objektu grupa"
|
msgstr "Objektu grupa"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Teksta objekts"
|
msgstr "Teksta objekts"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Svītru koda lauks"
|
msgstr "Svītru koda lauks"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Attēla lauks"
|
msgstr "Attēla lauks"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Pretix atbalstīts"
|
msgstr "Pretix atbalstīts"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objekts"
|
msgstr "Objekts"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Biļešu dizains"
|
msgstr "Biļešu dizains"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Saglabāšana neizdevās."
|
msgstr "Saglabāšana neizdevās."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Radusies kļūda augšupielādējot jūsu PDF failu, lūdzu, mēģiniet vēlreiz."
|
"Radusies kļūda augšupielādējot jūsu PDF failu, lūdzu, mēģiniet vēlreiz."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vai jūs tiešām vēlaties iziet no rediģēšanas lauka bez veikto izmaiņu "
|
"Vai jūs tiešām vēlaties iziet no rediģēšanas lauka bez veikto izmaiņu "
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-06-20 02:00+0000\n"
|
"PO-Revision-Date: 2022-06-20 02:00+0000\n"
|
||||||
"Last-Translator: fyksen <fredrik@fyksen.me>\n"
|
"Last-Translator: fyksen <fredrik@fyksen.me>\n"
|
||||||
"Language-Team: Norwegian Bokmål <https://translate.pretix.eu/projects/pretix/"
|
"Language-Team: Norwegian Bokmål <https://translate.pretix.eu/projects/pretix/"
|
||||||
@@ -129,18 +129,18 @@ msgstr "WeChat Pay"
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr "Mercado Pago"
|
msgstr "Mercado Pago"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsett"
|
msgstr "Fortsett"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Bekrefter betalingen din…"
|
msgstr "Bekrefter betalingen din…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr "Betalingsmetode ikke tilgjengelig"
|
msgstr "Betalingsmetode ikke tilgjengelig"
|
||||||
|
|
||||||
@@ -479,48 +479,48 @@ msgstr "minutter"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Sjekk-in QR"
|
msgstr "Sjekk-in QR"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "PDF bakgrunnsfilen kunne ikke lastes av følgende årsak:"
|
msgstr "PDF bakgrunnsfilen kunne ikke lastes av følgende årsak:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Gruppe med objekter"
|
msgstr "Gruppe med objekter"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Tekst objekt"
|
msgstr "Tekst objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Strekkodeområde"
|
msgstr "Strekkodeområde"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Bildeområde"
|
msgstr "Bildeområde"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Drevet av pretix"
|
msgstr "Drevet av pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objekt"
|
msgstr "Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Billett design"
|
msgstr "Billett design"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Lagring feilet."
|
msgstr "Lagring feilet."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Feil ved opplasting av PDF fil, prøv på nytt."
|
msgstr "Feil ved opplasting av PDF fil, prøv på nytt."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Vil du avslutte editoren uten å lagre endringene?"
|
msgstr "Vil du avslutte editoren uten å lagre endringene?"
|
||||||
|
|
||||||
|
|||||||
+1608
-1499
File diff suppressed because it is too large
Load Diff
@@ -6,7 +6,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 1\n"
|
"Project-Id-Version: 1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-10-29 02:00+0000\n"
|
"PO-Revision-Date: 2021-10-29 02:00+0000\n"
|
||||||
"Last-Translator: Maarten van den Berg <maartenberg1@gmail.com>\n"
|
"Last-Translator: Maarten van den Berg <maartenberg1@gmail.com>\n"
|
||||||
"Language-Team: Dutch <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: Dutch <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -130,18 +130,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Doorgaan"
|
msgstr "Doorgaan"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Betaling bevestigen …"
|
msgstr "Betaling bevestigen …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -481,48 +481,48 @@ msgstr "minuten"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR-code voor check-in"
|
msgstr "QR-code voor check-in"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Het PDF-achtergrondbestand kon niet geladen worden met als reden:"
|
msgstr "Het PDF-achtergrondbestand kon niet geladen worden met als reden:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Groep van objecten"
|
msgstr "Groep van objecten"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Tekstobject"
|
msgstr "Tekstobject"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Barcode gebied"
|
msgstr "Barcode gebied"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Afbeeldingsgebied"
|
msgstr "Afbeeldingsgebied"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Mogelijk gemaakt door pretix"
|
msgstr "Mogelijk gemaakt door pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Object"
|
msgstr "Object"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Ticketontwerp"
|
msgstr "Ticketontwerp"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Opslaan mislukt."
|
msgstr "Opslaan mislukt."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Probleem bij het uploaden van het PDF-bestand, probeer het opnieuw."
|
msgstr "Probleem bij het uploaden van het PDF-bestand, probeer het opnieuw."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Wilt u de editor verlaten zonder uw wijzigingen op te slaan?"
|
msgstr "Wilt u de editor verlaten zonder uw wijzigingen op te slaan?"
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@@ -127,18 +127,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -467,48 +467,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-08-05 04:00+0000\n"
|
"PO-Revision-Date: 2021-08-05 04:00+0000\n"
|
||||||
"Last-Translator: Maarten van den Berg <maartenberg1@gmail.com>\n"
|
"Last-Translator: Maarten van den Berg <maartenberg1@gmail.com>\n"
|
||||||
"Language-Team: Dutch (informal) <https://translate.pretix.eu/projects/pretix/"
|
"Language-Team: Dutch (informal) <https://translate.pretix.eu/projects/pretix/"
|
||||||
@@ -131,18 +131,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Doorgaan"
|
msgstr "Doorgaan"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Betaling bevestigen …"
|
msgstr "Betaling bevestigen …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -485,49 +485,49 @@ msgstr "minuten"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR-code voor check-in"
|
msgstr "QR-code voor check-in"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Het PDF-achtergrondbestand kon niet geladen worden om de volgende reden:"
|
"Het PDF-achtergrondbestand kon niet geladen worden om de volgende reden:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Groep van objecten"
|
msgstr "Groep van objecten"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Tekstobject"
|
msgstr "Tekstobject"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Barcodegebied"
|
msgstr "Barcodegebied"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Afbeeldingsgebied"
|
msgstr "Afbeeldingsgebied"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Mogelijk gemaakt door pretix"
|
msgstr "Mogelijk gemaakt door pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Object"
|
msgstr "Object"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Kaartjesontwerp"
|
msgstr "Kaartjesontwerp"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Opslaan mislukt."
|
msgstr "Opslaan mislukt."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Probleem bij het uploaden van het PDF-bestand, probeer het opnieuw."
|
msgstr "Probleem bij het uploaden van het PDF-bestand, probeer het opnieuw."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Wil je de editor verlaten zonder je wijzigingen op te slaan?"
|
msgstr "Wil je de editor verlaten zonder je wijzigingen op te slaan?"
|
||||||
|
|
||||||
|
|||||||
+1594
-1505
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2019-09-24 19:00+0000\n"
|
"PO-Revision-Date: 2019-09-24 19:00+0000\n"
|
||||||
"Last-Translator: Serge Bazanski <q3k@hackerspace.pl>\n"
|
"Last-Translator: Serge Bazanski <q3k@hackerspace.pl>\n"
|
||||||
"Language-Team: Polish <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
"Language-Team: Polish <https://translate.pretix.eu/projects/pretix/pretix-js/"
|
||||||
@@ -132,7 +132,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -140,13 +140,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Dalej"
|
msgstr "Dalej"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Potwierdzanie płatności…"
|
msgstr "Potwierdzanie płatności…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -516,50 +516,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR zameldowania"
|
msgstr "QR zameldowania"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Błąd ładowania pliku PDF tła:"
|
msgstr "Błąd ładowania pliku PDF tła:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Grupa obiektów"
|
msgstr "Grupa obiektów"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Obiekt tekstowy"
|
msgstr "Obiekt tekstowy"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Miejsce na kod kreskowy"
|
msgstr "Miejsce na kod kreskowy"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Miejsce na kod kreskowy"
|
msgstr "Miejsce na kod kreskowy"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Wygenerowane przez pretix"
|
msgstr "Wygenerowane przez pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Obiekt"
|
msgstr "Obiekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Projekt biletu"
|
msgstr "Projekt biletu"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Błąd zapisu."
|
msgstr "Błąd zapisu."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Błąd uploadu pliku PDF, prosimy spróbować ponownie."
|
msgstr "Błąd uploadu pliku PDF, prosimy spróbować ponownie."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Czy na pewno opuścić edytor bez zapisania zmian?"
|
msgstr "Czy na pewno opuścić edytor bez zapisania zmian?"
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@@ -128,18 +128,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -468,48 +468,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+1587
-1503
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -128,18 +128,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -468,48 +468,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2019-03-19 09:00+0000\n"
|
"PO-Revision-Date: 2019-03-19 09:00+0000\n"
|
||||||
"Last-Translator: Vitor Reis <vitor.reis7@gmail.com>\n"
|
"Last-Translator: Vitor Reis <vitor.reis7@gmail.com>\n"
|
||||||
"Language-Team: Portuguese (Brazil) <https://translate.pretix.eu/projects/"
|
"Language-Team: Portuguese (Brazil) <https://translate.pretix.eu/projects/"
|
||||||
@@ -129,7 +129,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -137,13 +137,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -519,50 +519,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR Check-in"
|
msgstr "QR Check-in"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "O arquivo de fundo PDF não pôde ser carregado pelo seguinte motivo:"
|
msgstr "O arquivo de fundo PDF não pôde ser carregado pelo seguinte motivo:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Grupo de objetos"
|
msgstr "Grupo de objetos"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Objeto de texto"
|
msgstr "Objeto de texto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Área de código de barras"
|
msgstr "Área de código de barras"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Área de código de barras"
|
msgstr "Área de código de barras"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Distribuído por pretix"
|
msgstr "Distribuído por pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objeto"
|
msgstr "Objeto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Design de bilhetes"
|
msgstr "Design de bilhetes"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Erro ao salvar."
|
msgstr "Erro ao salvar."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Erro durante o upload do seu arquivo PDF, tente novamente."
|
msgstr "Erro durante o upload do seu arquivo PDF, tente novamente."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Você realmente quer deixar o editor sem salvar suas mudanças?"
|
msgstr "Você realmente quer deixar o editor sem salvar suas mudanças?"
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -7,9 +7,9 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-11-07 14:50+0000\n"
|
"PO-Revision-Date: 2022-11-16 16:12+0000\n"
|
||||||
"Last-Translator: Fazenda Dengo <fazendadengo@gmail.com>\n"
|
"Last-Translator: David Vaz <davidmgvaz@gmail.com>\n"
|
||||||
"Language-Team: Portuguese (Portugal) <https://translate.pretix.eu/projects/"
|
"Language-Team: Portuguese (Portugal) <https://translate.pretix.eu/projects/"
|
||||||
"pretix/pretix-js/pt_PT/>\n"
|
"pretix/pretix-js/pt_PT/>\n"
|
||||||
"Language: pt_PT\n"
|
"Language: pt_PT\n"
|
||||||
@@ -131,7 +131,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -139,13 +139,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuar"
|
msgstr "Continuar"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "A confirmar o seu pagamento…"
|
msgstr "A confirmar o seu pagamento…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -287,7 +287,7 @@ msgstr "Erro desconhecido."
|
|||||||
|
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:57
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:57
|
||||||
msgid "Ticket type not allowed here"
|
msgid "Ticket type not allowed here"
|
||||||
msgstr ""
|
msgstr "Tipo de bilhete não é permitido aqui"
|
||||||
|
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:59
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:59
|
||||||
msgid "Entry not allowed"
|
msgid "Entry not allowed"
|
||||||
@@ -495,56 +495,56 @@ msgstr "Adicionar condição"
|
|||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:121
|
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:121
|
||||||
msgid "minutes"
|
msgid "minutes"
|
||||||
msgstr ""
|
msgstr "minutos"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:71
|
#: pretix/static/pretixcontrol/js/ui/editor.js:71
|
||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Check-in QR"
|
msgstr "Check-in QR"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "O ficheiro de fundo PDF não pôde ser carregado pela seguinte razão:"
|
msgstr "O ficheiro de fundo PDF não pôde ser carregado pela seguinte razão:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Grupo de objectos"
|
msgstr "Grupo de objectos"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Objecto de texto"
|
msgstr "Objecto de texto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Área do código de barras"
|
msgstr "Área do código de barras"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Área do código de barras"
|
msgstr "Área do código de barras"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Powered by pretix"
|
msgstr "Powered by pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objecto"
|
msgstr "Objecto"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Design do Bilhete"
|
msgstr "Design do Bilhete"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Salvar falhou."
|
msgstr "Salvar falhou."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Erro ao carregar o seu ficheiro PDF, por favor tente novamente."
|
msgstr "Erro ao carregar o seu ficheiro PDF, por favor tente novamente."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Quer mesmo deixar o editor sem guardar as suas alterações?"
|
msgstr "Quer mesmo deixar o editor sem guardar as suas alterações?"
|
||||||
|
|
||||||
|
|||||||
+1608
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-04-29 04:00+0000\n"
|
"PO-Revision-Date: 2022-04-29 04:00+0000\n"
|
||||||
"Last-Translator: Edd28 <chitu_edy@yahoo.com>\n"
|
"Last-Translator: Edd28 <chitu_edy@yahoo.com>\n"
|
||||||
"Language-Team: Romanian <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Romanian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -130,18 +130,18 @@ msgstr "WeChat Pay"
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr "Mercado Pago"
|
msgstr "Mercado Pago"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Continuă"
|
msgstr "Continuă"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Se confirmă plata…"
|
msgstr "Se confirmă plata…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr "Metodă de plată indisponibilă"
|
msgstr "Metodă de plată indisponibilă"
|
||||||
|
|
||||||
@@ -483,49 +483,49 @@ msgstr "minute"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR Check-in"
|
msgstr "QR Check-in"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Fișierul de fundal al PDF-ului nu a putut fi încărcat din această cauză:"
|
"Fișierul de fundal al PDF-ului nu a putut fi încărcat din această cauză:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Grup de obiecte"
|
msgstr "Grup de obiecte"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Obiect Text"
|
msgstr "Obiect Text"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Zonă de Cod de bare"
|
msgstr "Zonă de Cod de bare"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Zonă de Imagine"
|
msgstr "Zonă de Imagine"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Dezvoltat de pretix"
|
msgstr "Dezvoltat de pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Obiect"
|
msgstr "Obiect"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Design bilet"
|
msgstr "Design bilet"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Salvarea a eșuat."
|
msgstr "Salvarea a eșuat."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Eroare la încărcarea fișierului PDF, te rugăm să reîncerci."
|
msgstr "Eroare la încărcarea fișierului PDF, te rugăm să reîncerci."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ești sigur că dorești să părăsești editorul fără a salva schimbările "
|
"Ești sigur că dorești să părăsești editorul fără a salva schimbările "
|
||||||
|
|||||||
+1592
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-08-09 13:10+0000\n"
|
"PO-Revision-Date: 2021-08-09 13:10+0000\n"
|
||||||
"Last-Translator: Svyatoslav <slava@digitalarthouse.eu>\n"
|
"Last-Translator: Svyatoslav <slava@digitalarthouse.eu>\n"
|
||||||
"Language-Team: Russian <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Russian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -132,7 +132,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -140,13 +140,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продолжить"
|
msgstr "Продолжить"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Подтверждается ваш платёж…"
|
msgstr "Подтверждается ваш платёж…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -514,50 +514,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR-код для регистрации"
|
msgstr "QR-код для регистрации"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Не удалось загрузить фоновый файл PDF по следующей причине:"
|
msgstr "Не удалось загрузить фоновый файл PDF по следующей причине:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Группа объектов"
|
msgstr "Группа объектов"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Текстовый объект"
|
msgstr "Текстовый объект"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Область штрих-кода"
|
msgstr "Область штрих-кода"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Область штрих-кода"
|
msgstr "Область штрих-кода"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "На базе pretix"
|
msgstr "На базе pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Объект"
|
msgstr "Объект"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Дизайн билета"
|
msgstr "Дизайн билета"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Сохранить не удалось."
|
msgstr "Сохранить не удалось."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Ошибка при загрузке файла PDF, попробуйте ещё раз."
|
msgstr "Ошибка при загрузке файла PDF, попробуйте ещё раз."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Вы действительно хотите выйти из редактора без сохранения изменений?"
|
msgstr "Вы действительно хотите выйти из редактора без сохранения изменений?"
|
||||||
|
|
||||||
|
|||||||
+1585
-1503
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: Automatically generated\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: none\n"
|
"Language-Team: none\n"
|
||||||
@@ -127,18 +127,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -467,48 +467,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
+1590
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2019-08-27 08:00+0000\n"
|
"PO-Revision-Date: 2019-08-27 08:00+0000\n"
|
||||||
"Last-Translator: Bostjan Marusic <bostjan@brokenbones.si>\n"
|
"Last-Translator: Bostjan Marusic <bostjan@brokenbones.si>\n"
|
||||||
"Language-Team: Slovenian <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Slovenian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -132,7 +132,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -140,13 +140,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Nadaljuj"
|
msgstr "Nadaljuj"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Potrjevanje plačila …"
|
msgstr "Potrjevanje plačila …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -513,50 +513,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR koda za check-in"
|
msgstr "QR koda za check-in"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Ozadja PDF ni bilo mogoče naložiti zaradi naslednjega razloga:"
|
msgstr "Ozadja PDF ni bilo mogoče naložiti zaradi naslednjega razloga:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Skupina objektov"
|
msgstr "Skupina objektov"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Tekstovni objekt"
|
msgstr "Tekstovni objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Področje za črtno kodo"
|
msgstr "Področje za črtno kodo"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Področje za črtno kodo"
|
msgstr "Področje za črtno kodo"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Powered by pretix"
|
msgstr "Powered by pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objekt"
|
msgstr "Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Oblikovanje vstopnice"
|
msgstr "Oblikovanje vstopnice"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Shranjevanje ni bilo uspešno."
|
msgstr "Shranjevanje ni bilo uspešno."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Napaka pri nalaganju datoteke PDF. Poskusite ponovno."
|
msgstr "Napaka pri nalaganju datoteke PDF. Poskusite ponovno."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Ali zares želite zapustiti urejevalnik ne da bi shranili spremembe?"
|
msgstr "Ali zares želite zapustiti urejevalnik ne da bi shranili spremembe?"
|
||||||
|
|
||||||
|
|||||||
+1592
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-03-03 07:00+0000\n"
|
"PO-Revision-Date: 2022-03-03 07:00+0000\n"
|
||||||
"Last-Translator: MaLund13 <mart.lund13@gmail.com>\n"
|
"Last-Translator: MaLund13 <mart.lund13@gmail.com>\n"
|
||||||
"Language-Team: Swedish <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Swedish <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -131,18 +131,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortsätt"
|
msgstr "Fortsätt"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Bekräftar din betalning …"
|
msgstr "Bekräftar din betalning …"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -481,48 +481,48 @@ msgstr "minuter"
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "QR-kod för att Checka in"
|
msgstr "QR-kod för att Checka in"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Bakgrunds-filen till PDFen kunde inte laddas av följande orsak:"
|
msgstr "Bakgrunds-filen till PDFen kunde inte laddas av följande orsak:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Grupp av objekt"
|
msgstr "Grupp av objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Textobjekt"
|
msgstr "Textobjekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "QR-kod-område"
|
msgstr "QR-kod-område"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Bildområde"
|
msgstr "Bildområde"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Drivs av pretix"
|
msgstr "Drivs av pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Objekt"
|
msgstr "Objekt"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Biljettdesign"
|
msgstr "Biljettdesign"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Misslyckades att spara."
|
msgstr "Misslyckades att spara."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Ett fel uppstod när du laddade upp din PDF-fil, vänligen försök igen."
|
msgstr "Ett fel uppstod när du laddade upp din PDF-fil, vänligen försök igen."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Vill du verkligen lämna editorn utan att spara dina ändringar?"
|
msgstr "Vill du verkligen lämna editorn utan att spara dina ändringar?"
|
||||||
|
|
||||||
|
|||||||
+1594
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2018-09-03 06:36+0000\n"
|
"PO-Revision-Date: 2018-09-03 06:36+0000\n"
|
||||||
"Last-Translator: Yunus Fırat Pişkin <firat.piskin@idvlabs.com>\n"
|
"Last-Translator: Yunus Fırat Pişkin <firat.piskin@idvlabs.com>\n"
|
||||||
"Language-Team: Turkish <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Turkish <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -129,7 +129,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -137,13 +137,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Devam et"
|
msgstr "Devam et"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -518,50 +518,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "Giriş QR"
|
msgstr "Giriş QR"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "PDF arka plan dosyası aşağıdaki nedenden dolayı yüklenemedi:"
|
msgstr "PDF arka plan dosyası aşağıdaki nedenden dolayı yüklenemedi:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Nesne grubu"
|
msgstr "Nesne grubu"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Metin nesnesi"
|
msgstr "Metin nesnesi"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Barkod alanı"
|
msgstr "Barkod alanı"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Barkod alanı"
|
msgstr "Barkod alanı"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "Pretix tarafından desteklenmektedir"
|
msgstr "Pretix tarafından desteklenmektedir"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Nesne"
|
msgstr "Nesne"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Bilet tasarımı"
|
msgstr "Bilet tasarımı"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Kaydetme başarısız oldu."
|
msgstr "Kaydetme başarısız oldu."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "PDF dosyanızı yüklerken hata oluştu, lütfen tekrar deneyin."
|
msgstr "PDF dosyanızı yüklerken hata oluştu, lütfen tekrar deneyin."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Değişiklikleri kaydetmeden editörden gerçekten ayrılmak istiyor musunuz?"
|
"Değişiklikleri kaydetmeden editörden gerçekten ayrılmak istiyor musunuz?"
|
||||||
|
|||||||
+1608
-1499
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2022-05-10 02:00+0000\n"
|
"PO-Revision-Date: 2022-05-10 02:00+0000\n"
|
||||||
"Last-Translator: Iryna N <in380@nyu.edu>\n"
|
"Last-Translator: Iryna N <in380@nyu.edu>\n"
|
||||||
"Language-Team: Ukrainian <https://translate.pretix.eu/projects/pretix/pretix-"
|
"Language-Team: Ukrainian <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||||
@@ -134,18 +134,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Продовжити"
|
msgstr "Продовжити"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "Підтверджується ваш платіж…"
|
msgstr "Підтверджується ваш платіж…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -486,48 +486,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "Не вдалося завантажити фоновий файл PDF з наступної причини:"
|
msgstr "Не вдалося завантажити фоновий файл PDF з наступної причини:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "Група об'єктів"
|
msgstr "Група об'єктів"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "Текстовий об’єкт"
|
msgstr "Текстовий об’єкт"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "Область штрих-коду"
|
msgstr "Область штрих-коду"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "Область зображення"
|
msgstr "Область зображення"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "На базі pretix"
|
msgstr "На базі pretix"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "Об'єкт"
|
msgstr "Об'єкт"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "Дизайн квитка"
|
msgstr "Дизайн квитка"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "Не вдалося зберегти."
|
msgstr "Не вдалося зберегти."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "Під час завантаження PDF-файлу сталася помилка. Повторіть спробу."
|
msgstr "Під час завантаження PDF-файлу сталася помилка. Повторіть спробу."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "Ви дійсно хочете вийти з редактора, не зберігаючи зміни?"
|
msgstr "Ви дійсно хочете вийти з редактора, не зберігаючи зміни?"
|
||||||
|
|
||||||
|
|||||||
+1585
-1503
File diff suppressed because it is too large
Load Diff
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -128,18 +128,18 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -468,48 +468,48 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-11-07 15:22+0000\n"
|
"POT-Creation-Date: 2022-11-21 14:52+0000\n"
|
||||||
"PO-Revision-Date: 2021-12-03 08:37+0000\n"
|
"PO-Revision-Date: 2021-12-03 08:37+0000\n"
|
||||||
"Last-Translator: ExtremeX-BB <qq754163444@gmail.com>\n"
|
"Last-Translator: ExtremeX-BB <qq754163444@gmail.com>\n"
|
||||||
"Language-Team: Chinese (Simplified) <https://translate.pretix.eu/projects/"
|
"Language-Team: Chinese (Simplified) <https://translate.pretix.eu/projects/"
|
||||||
@@ -131,7 +131,7 @@ msgstr ""
|
|||||||
msgid "Mercado Pago"
|
msgid "Mercado Pago"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:159
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:163
|
||||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgctxt "widget"
|
#| msgctxt "widget"
|
||||||
@@ -139,13 +139,13 @@ msgstr ""
|
|||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "继续"
|
msgstr "继续"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:217
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:221
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:152
|
||||||
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
#: pretix/plugins/stripe/static/pretixplugins/stripe/pretix-stripe.js:183
|
||||||
msgid "Confirming your payment …"
|
msgid "Confirming your payment …"
|
||||||
msgstr "正在确认您的付款…"
|
msgstr "正在确认您的付款…"
|
||||||
|
|
||||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:242
|
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:246
|
||||||
msgid "Payment method unavailable"
|
msgid "Payment method unavailable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -486,50 +486,50 @@ msgstr ""
|
|||||||
msgid "Check-in QR"
|
msgid "Check-in QR"
|
||||||
msgstr "签到QR码"
|
msgstr "签到QR码"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:378
|
#: pretix/static/pretixcontrol/js/ui/editor.js:384
|
||||||
msgid "The PDF background file could not be loaded for the following reason:"
|
msgid "The PDF background file could not be loaded for the following reason:"
|
||||||
msgstr "由于以下原因无法加载PDF背景文件:"
|
msgstr "由于以下原因无法加载PDF背景文件:"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:648
|
#: pretix/static/pretixcontrol/js/ui/editor.js:653
|
||||||
msgid "Group of objects"
|
msgid "Group of objects"
|
||||||
msgstr "对象组"
|
msgstr "对象组"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:654
|
#: pretix/static/pretixcontrol/js/ui/editor.js:659
|
||||||
msgid "Text object"
|
msgid "Text object"
|
||||||
msgstr "文本对象"
|
msgstr "文本对象"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:656
|
#: pretix/static/pretixcontrol/js/ui/editor.js:661
|
||||||
msgid "Barcode area"
|
msgid "Barcode area"
|
||||||
msgstr "条码区"
|
msgstr "条码区"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:658
|
#: pretix/static/pretixcontrol/js/ui/editor.js:663
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid "Barcode area"
|
#| msgid "Barcode area"
|
||||||
msgid "Image area"
|
msgid "Image area"
|
||||||
msgstr "条码区"
|
msgstr "条码区"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:660
|
#: pretix/static/pretixcontrol/js/ui/editor.js:665
|
||||||
msgid "Powered by pretix"
|
msgid "Powered by pretix"
|
||||||
msgstr "由pretix驱动"
|
msgstr "由pretix驱动"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:662
|
#: pretix/static/pretixcontrol/js/ui/editor.js:667
|
||||||
msgid "Object"
|
msgid "Object"
|
||||||
msgstr "对象"
|
msgstr "对象"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:666
|
#: pretix/static/pretixcontrol/js/ui/editor.js:671
|
||||||
msgid "Ticket design"
|
msgid "Ticket design"
|
||||||
msgstr "门票设计"
|
msgstr "门票设计"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:956
|
#: pretix/static/pretixcontrol/js/ui/editor.js:961
|
||||||
msgid "Saving failed."
|
msgid "Saving failed."
|
||||||
msgstr "保存失败."
|
msgstr "保存失败."
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1006
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1011
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1045
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1050
|
||||||
msgid "Error while uploading your PDF file, please try again."
|
msgid "Error while uploading your PDF file, please try again."
|
||||||
msgstr "上传PDF文件时出错,请重试。"
|
msgstr "上传PDF文件时出错,请重试。"
|
||||||
|
|
||||||
#: pretix/static/pretixcontrol/js/ui/editor.js:1030
|
#: pretix/static/pretixcontrol/js/ui/editor.js:1035
|
||||||
msgid "Do you really want to leave the editor without saving your changes?"
|
msgid "Do you really want to leave the editor without saving your changes?"
|
||||||
msgstr "你真的想离开编辑器而不保存你的更改吗?"
|
msgstr "你真的想离开编辑器而不保存你的更改吗?"
|
||||||
|
|
||||||
|
|||||||
@@ -2,17 +2,31 @@
|
|||||||
|
|
||||||
{% if payment_info %}
|
{% if payment_info %}
|
||||||
<dl class="dl-horizontal">
|
<dl class="dl-horizontal">
|
||||||
<dt>{% trans "Sale ID" %}</dt>
|
{% if payment_info.purchase_units.0.payments %}
|
||||||
<dd>{{ payment_info.purchase_units.0.payments.captures.0.id }}</dd>
|
<dt>{% trans "Sale ID" %}</dt>
|
||||||
|
<dd>{{ payment_info.purchase_units.0.payments.captures.0.id }}</dd>
|
||||||
|
{% endif %}
|
||||||
<dt>{% trans "Status" %}</dt>
|
<dt>{% trans "Status" %}</dt>
|
||||||
<dd>{{ payment_info.status }}</dd>
|
<dd>{{ payment_info.status }}</dd>
|
||||||
<dt>{% trans "Payer" %}</dt>
|
{% if payment_info.payer %}
|
||||||
<dd>{{ payment_info.payer.email_address }}</dd>
|
<dt>{% trans "Payer" %}</dt>
|
||||||
<dt>{% trans "Last update" %}</dt>
|
<dd>{{ payment_info.payer.email_address }}</dd>
|
||||||
<dd>{{ payment_info.purchase_units.0.payments.captures.0.update_time }}</dd>
|
{% endif %}
|
||||||
<dt>{% trans "Total value" %}</dt>
|
{% if payment_info.error %}
|
||||||
<dd>{{ payment_info.purchase_units.0.payments.captures.0.amount.value }}</dd>
|
<dt>{% trans "Error" %}</dt>
|
||||||
<dt>{% trans "Currency" %}</dt>
|
<dd>[{{ payment_info.error.name }}] {{ payment_info.error.message }}</dd>
|
||||||
<dd>{{ payment_info.purchase_units.0.payments.captures.0.amount.currency_code }}</dd>
|
{% for d in payment_info.error.details %}
|
||||||
|
<dt>{% trans "Error" %}</dt>
|
||||||
|
<dd>[{{ d.issue }}] {{ d.description }}</dd>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
{% if payment_info.purchase_units.0.payments %}
|
||||||
|
<dt>{% trans "Last update" %}</dt>
|
||||||
|
<dd>{{ payment_info.purchase_units.0.payments.captures.0.update_time }}</dd>
|
||||||
|
<dt>{% trans "Total value" %}</dt>
|
||||||
|
<dd>{{ payment_info.purchase_units.0.payments.captures.0.amount.value }}</dd>
|
||||||
|
<dt>{% trans "Currency" %}</dt>
|
||||||
|
<dd>{{ payment_info.purchase_units.0.payments.captures.0.amount.currency_code }}</dd>
|
||||||
|
{% endif %}
|
||||||
</dl>
|
</dl>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -31,12 +31,12 @@
|
|||||||
# Unless required by applicable law or agreed to in writing, software distributed under the Apache License 2.0 is
|
# 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
|
# 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.
|
# License for the specific language governing permissions and limitations under the License.
|
||||||
|
from django.db.models import Exists, OuterRef, Q
|
||||||
from i18nfield.strings import LazyI18nString
|
from i18nfield.strings import LazyI18nString
|
||||||
|
|
||||||
from pretix.base.email import get_email_context
|
from pretix.base.email import get_email_context
|
||||||
from pretix.base.i18n import language
|
from pretix.base.i18n import language
|
||||||
from pretix.base.models import Event, InvoiceAddress, Order, User
|
from pretix.base.models import Checkin, Event, InvoiceAddress, Order, User
|
||||||
from pretix.base.services.mail import SendMailException, mail
|
from pretix.base.services.mail import SendMailException, mail
|
||||||
from pretix.base.services.tasks import ProfiledEventTask
|
from pretix.base.services.tasks import ProfiledEventTask
|
||||||
from pretix.celery_app import app
|
from pretix.celery_app import app
|
||||||
@@ -61,7 +61,19 @@ def send_mails(event: Event, user: int, subject: dict, message: dict, orders: li
|
|||||||
ia = InvoiceAddress(order=o)
|
ia = InvoiceAddress(order=o)
|
||||||
|
|
||||||
if recipients in ('both', 'attendees'):
|
if recipients in ('both', 'attendees'):
|
||||||
for p in o.positions.prefetch_related('addons'):
|
for p in o.positions.annotate(
|
||||||
|
any_checkins=Exists(
|
||||||
|
Checkin.objects.filter(
|
||||||
|
Q(position_id=OuterRef('pk')) | Q(position__addon_to_id=OuterRef('pk')),
|
||||||
|
)
|
||||||
|
),
|
||||||
|
matching_checkins=Exists(
|
||||||
|
Checkin.objects.filter(
|
||||||
|
Q(position_id=OuterRef('pk')) | Q(position__addon_to_id=OuterRef('pk')),
|
||||||
|
list_id__in=checkin_lists or []
|
||||||
|
)
|
||||||
|
),
|
||||||
|
).prefetch_related('addons'):
|
||||||
if p.addon_to_id is not None:
|
if p.addon_to_id is not None:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
@@ -69,10 +81,9 @@ def send_mails(event: Event, user: int, subject: dict, message: dict, orders: li
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
if filter_checkins:
|
if filter_checkins:
|
||||||
checkins = list(p.checkins.all())
|
|
||||||
allowed = (
|
allowed = (
|
||||||
(not_checked_in and not checkins)
|
(not_checked_in and not p.any_checkins)
|
||||||
or (any(c.list_id in checkin_lists for c in checkins))
|
or p.matching_checkins
|
||||||
)
|
)
|
||||||
if not allowed:
|
if not allowed:
|
||||||
continue
|
continue
|
||||||
|
|||||||
@@ -137,9 +137,14 @@ class SenderView(EventPermissionRequiredMixin, FormView):
|
|||||||
orders = qs.filter(statusq)
|
orders = qs.filter(statusq)
|
||||||
|
|
||||||
opq = OrderPosition.objects.filter(
|
opq = OrderPosition.objects.filter(
|
||||||
|
Q(item_id__in=[i.pk for i in form.cleaned_data.get('items')]) | Q(Exists(
|
||||||
|
OrderPosition.objects.filter(
|
||||||
|
addon_to_id=OuterRef('pk'),
|
||||||
|
item_id__in=[i.pk for i in form.cleaned_data.get('items')]
|
||||||
|
)
|
||||||
|
)),
|
||||||
order=OuterRef('pk'),
|
order=OuterRef('pk'),
|
||||||
canceled=False,
|
canceled=False,
|
||||||
item_id__in=[i.pk for i in form.cleaned_data.get('items')],
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if form.cleaned_data.get('filter_checkins'):
|
if form.cleaned_data.get('filter_checkins'):
|
||||||
@@ -149,7 +154,7 @@ class SenderView(EventPermissionRequiredMixin, FormView):
|
|||||||
opq = opq.alias(
|
opq = opq.alias(
|
||||||
any_checkins=Exists(
|
any_checkins=Exists(
|
||||||
Checkin.all.filter(
|
Checkin.all.filter(
|
||||||
position_id=OuterRef('pk'),
|
Q(position_id=OuterRef('pk')) | Q(position__addon_to_id=OuterRef('pk')),
|
||||||
successful=True
|
successful=True
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@@ -159,7 +164,7 @@ class SenderView(EventPermissionRequiredMixin, FormView):
|
|||||||
opq = opq.alias(
|
opq = opq.alias(
|
||||||
matching_checkins=Exists(
|
matching_checkins=Exists(
|
||||||
Checkin.all.filter(
|
Checkin.all.filter(
|
||||||
position_id=OuterRef('pk'),
|
Q(position_id=OuterRef('pk')) | Q(position__addon_to_id=OuterRef('pk')),
|
||||||
list_id__in=[i.pk for i in form.cleaned_data.get('checkin_lists', [])],
|
list_id__in=[i.pk for i in form.cleaned_data.get('checkin_lists', [])],
|
||||||
successful=True
|
successful=True
|
||||||
)
|
)
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user