mirror of
https://github.com/pretix/pretix.git
synced 2026-07-21 07:41:40 +00:00
Compare commits
50
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82ca50c7ff | ||
|
|
3437b64947 | ||
|
|
449e8dc905 | ||
|
|
c491c8232e | ||
|
|
aa02cc7968 | ||
|
|
cfa13d6b9d | ||
|
|
af4eabc800 | ||
|
|
e1f5678d7c | ||
|
|
609b7c82ee | ||
|
|
8d66e1e732 | ||
|
|
c925f094f2 | ||
|
|
5caaa8586d | ||
|
|
1b1cf1557d | ||
|
|
35d8a7eec5 | ||
|
|
d428c3e1a4 | ||
|
|
63850f3139 | ||
|
|
04c8270d43 | ||
|
|
74a960e239 | ||
|
|
5a1bcae085 | ||
|
|
051eb78312 | ||
|
|
15808e55fd | ||
|
|
c886c0b415 | ||
|
|
47472447eb | ||
|
|
1a40215e91 | ||
|
|
d3fde85c39 | ||
|
|
40bd66cb86 | ||
|
|
bdd94b1f8a | ||
|
|
1c907f6a6f | ||
|
|
39e3ed9c25 | ||
|
|
4b5711253e | ||
|
|
bd554c7c29 | ||
|
|
2261951b15 | ||
|
|
0f82e1cae6 | ||
|
|
b0760157ce | ||
|
|
de2dec9089 | ||
|
|
446c8e622b | ||
|
|
703be2ebb8 | ||
|
|
a56fbc896c | ||
|
|
7b6f5df985 | ||
|
|
d2087907d5 | ||
|
|
cbc2e611a2 | ||
|
|
02126a48fe | ||
|
|
be9af94131 | ||
|
|
dbe1944996 | ||
|
|
6181bdc2e9 | ||
|
|
fe40d1c491 | ||
|
|
9f263fbe4f | ||
|
|
fdd34f387a | ||
|
|
bfab523d83 | ||
|
|
8f69cb166d |
@@ -211,7 +211,7 @@ The line-based computation has a few significant advantages:
|
||||
|
||||
The main disadvantage is that the tax looks "wrong" when computed from the sum. Taking the sum of net prices (420.15)
|
||||
and multiplying it with the tax rate (19%) yields a tax amount of 79.83 (instead of 79.85) and a gross sum of 499.98
|
||||
(instead of 499.98). This becomes a problem when juristictions, data formats, or external systems expect this calculation
|
||||
(instead of 500.00). This becomes a problem when juristictions, data formats, or external systems expect this calculation
|
||||
to work on the level of the entire order. A prominent example is the EN 16931 standard for e-invoicing that
|
||||
does not allow the computation as created by pretix.
|
||||
|
||||
|
||||
+5
-5
@@ -30,11 +30,12 @@ dependencies = [
|
||||
"babel",
|
||||
"BeautifulSoup4==4.14.*",
|
||||
"bleach==6.2.*",
|
||||
"celery==5.5.*",
|
||||
"celery==5.6.*",
|
||||
"chardet==5.2.*",
|
||||
"cryptography>=44.0.0",
|
||||
"css-inline==0.18.*",
|
||||
"defusedcsv>=1.1.0",
|
||||
"dnspython==2.*",
|
||||
"Django[argon2]==4.2.*,>=4.2.26",
|
||||
"django-bootstrap3==25.2",
|
||||
"django-compressor==4.5.1",
|
||||
@@ -61,7 +62,7 @@ dependencies = [
|
||||
"importlib_metadata==8.*", # Polyfill, we can probably drop this once we require Python 3.10+
|
||||
"isoweek",
|
||||
"jsonschema",
|
||||
"kombu==5.5.*",
|
||||
"kombu==5.6.*",
|
||||
"libsass==0.23.*",
|
||||
"lxml",
|
||||
"markdown==3.9", # 3.3.5 requires importlib-metadata>=4.4, but django-bootstrap3 requires importlib-metadata<3.
|
||||
@@ -81,7 +82,7 @@ dependencies = [
|
||||
"pycountry",
|
||||
"pycparser==2.23",
|
||||
"pycryptodome==3.23.*",
|
||||
"pypdf==6.3.*",
|
||||
"pypdf==6.4.*",
|
||||
"python-bidi==0.6.*", # Support for Arabic in reportlab
|
||||
"python-dateutil==2.9.*",
|
||||
"pytz",
|
||||
@@ -91,14 +92,13 @@ dependencies = [
|
||||
"redis==6.4.*",
|
||||
"reportlab==4.4.*",
|
||||
"requests==2.32.*",
|
||||
"sentry-sdk==2.45.*",
|
||||
"sentry-sdk==2.47.*",
|
||||
"sepaxml==2.7.*",
|
||||
"stripe==7.9.*",
|
||||
"text-unidecode==1.*",
|
||||
"tlds>=2020041600",
|
||||
"tqdm==4.*",
|
||||
"ua-parser==1.0.*",
|
||||
"vat_moss_forked==2020.3.20.0.11.0",
|
||||
"vobject==0.9.*",
|
||||
"webauthn==2.7.*",
|
||||
"zeep==4.3.*"
|
||||
|
||||
@@ -19,4 +19,4 @@
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
__version__ = "2025.10.0.dev0"
|
||||
__version__ = "2025.11.0.dev0"
|
||||
|
||||
@@ -795,6 +795,7 @@ class EventSettingsSerializer(SettingsSerializer):
|
||||
'invoice_address_asked',
|
||||
'invoice_address_required',
|
||||
'invoice_address_vatid',
|
||||
'invoice_address_vatid_required_countries',
|
||||
'invoice_address_company_required',
|
||||
'invoice_address_beneficiary',
|
||||
'invoice_address_custom_field',
|
||||
@@ -943,6 +944,7 @@ class DeviceEventSettingsSerializer(EventSettingsSerializer):
|
||||
'invoice_address_asked',
|
||||
'invoice_address_required',
|
||||
'invoice_address_vatid',
|
||||
'invoice_address_vatid_required_countries',
|
||||
'invoice_address_company_required',
|
||||
'invoice_address_beneficiary',
|
||||
'invoice_address_custom_field',
|
||||
|
||||
@@ -567,7 +567,7 @@ class QuotaViewSet(ConditionalListView, viewsets.ModelViewSet):
|
||||
write_permission = 'can_change_items'
|
||||
|
||||
def get_queryset(self):
|
||||
return self.request.event.quotas.all()
|
||||
return self.request.event.quotas.select_related('subevent').prefetch_related('items', 'variations').all()
|
||||
|
||||
def list(self, request, *args, **kwargs):
|
||||
queryset = self.filter_queryset(self.get_queryset()).distinct()
|
||||
|
||||
@@ -721,7 +721,7 @@ class MembershipViewSet(viewsets.ModelViewSet):
|
||||
def get_queryset(self):
|
||||
return Membership.objects.filter(
|
||||
customer__organizer=self.request.organizer
|
||||
)
|
||||
).select_related('customer')
|
||||
|
||||
def get_serializer_context(self):
|
||||
ctx = super().get_serializer_context()
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
from django.db import transaction
|
||||
from django.db.models import F, Q
|
||||
from django.utils.timezone import now
|
||||
@@ -64,8 +65,13 @@ class VoucherViewSet(viewsets.ModelViewSet):
|
||||
permission = 'can_view_vouchers'
|
||||
write_permission = 'can_change_vouchers'
|
||||
|
||||
@scopes_disabled() # we have an event check here, and we can save some performance on subqueries
|
||||
def get_queryset(self):
|
||||
return self.request.event.vouchers.select_related('seat').all()
|
||||
return Voucher.annotate_budget_used(
|
||||
self.request.event.vouchers
|
||||
).select_related(
|
||||
'item', 'quota', 'seat', 'variation'
|
||||
)
|
||||
|
||||
@transaction.atomic()
|
||||
def create(self, request, *args, **kwargs):
|
||||
|
||||
@@ -43,6 +43,7 @@ from pretix.base.services.tasks import ProfiledTask, TransactionAwareTask
|
||||
from pretix.base.signals import periodic_task
|
||||
from pretix.celery_app import app
|
||||
from pretix.helpers import OF_SELF
|
||||
from pretix.helpers.celery import get_task_priority
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
_ALL_EVENTS = None
|
||||
@@ -474,7 +475,10 @@ def notify_webhooks(logentry_ids: list):
|
||||
)
|
||||
|
||||
for wh in webhooks:
|
||||
send_webhook.apply_async(args=(logentry.id, notification_type.action_type, wh.pk))
|
||||
send_webhook.apply_async(
|
||||
args=(logentry.id, notification_type.action_type, wh.pk),
|
||||
priority=get_task_priority("notifications", logentry.organizer_id),
|
||||
)
|
||||
|
||||
|
||||
@app.task(base=ProfiledTask, bind=True, max_retries=5, default_retry_delay=60, acks_late=True, autoretry_for=(DatabaseError,),)
|
||||
|
||||
@@ -24,6 +24,7 @@ from itertools import groupby
|
||||
from smtplib import SMTPResponseException
|
||||
from typing import TypeVar
|
||||
|
||||
import bleach
|
||||
import css_inline
|
||||
from django.conf import settings
|
||||
from django.core.mail.backends.smtp import EmailBackend
|
||||
@@ -34,7 +35,10 @@ from django.utils.translation import get_language, gettext_lazy as _
|
||||
|
||||
from pretix.base.models import Event
|
||||
from pretix.base.signals import register_html_mail_renderers
|
||||
from pretix.base.templatetags.rich_text import markdown_compile_email
|
||||
from pretix.base.templatetags.rich_text import (
|
||||
DEFAULT_CALLBACKS, EMAIL_RE, URL_RE, abslink_callback,
|
||||
markdown_compile_email, truelink_callback,
|
||||
)
|
||||
from pretix.helpers.format import SafeFormatter, format_map
|
||||
|
||||
from pretix.base.services.placeholders import ( # noqa
|
||||
@@ -133,13 +137,24 @@ class TemplateBasedMailRenderer(BaseHTMLMailRenderer):
|
||||
def template_name(self):
|
||||
raise NotImplementedError()
|
||||
|
||||
def compile_markdown(self, plaintext):
|
||||
return markdown_compile_email(plaintext)
|
||||
def compile_markdown(self, plaintext, context=None):
|
||||
return markdown_compile_email(plaintext, context=context)
|
||||
|
||||
def render(self, plain_body: str, plain_signature: str, subject: str, order, position, context) -> str:
|
||||
body_md = self.compile_markdown(plain_body)
|
||||
body_md = self.compile_markdown(plain_body, context)
|
||||
if context:
|
||||
body_md = format_map(body_md, context=context, mode=SafeFormatter.MODE_RICH_TO_HTML)
|
||||
linker = bleach.Linker(
|
||||
url_re=URL_RE,
|
||||
email_re=EMAIL_RE,
|
||||
callbacks=DEFAULT_CALLBACKS + [truelink_callback, abslink_callback],
|
||||
parse_email=True
|
||||
)
|
||||
body_md = format_map(
|
||||
body_md,
|
||||
context=context,
|
||||
mode=SafeFormatter.MODE_RICH_TO_HTML,
|
||||
linkifier=linker
|
||||
)
|
||||
htmlctx = {
|
||||
'site': settings.PRETIX_INSTANCE_NAME,
|
||||
'site_url': settings.SITE_URL,
|
||||
|
||||
@@ -83,7 +83,7 @@ from pretix.base.invoicing.transmission import (
|
||||
from pretix.base.models import InvoiceAddress, Item, Question, QuestionOption
|
||||
from pretix.base.models.tax import ask_for_vat_id
|
||||
from pretix.base.services.tax import (
|
||||
VATIDFinalError, VATIDTemporaryError, validate_vat_id,
|
||||
VATIDFinalError, VATIDTemporaryError, normalize_vat_id, validate_vat_id,
|
||||
)
|
||||
from pretix.base.settings import (
|
||||
COUNTRIES_WITH_STATE_IN_ADDRESS, COUNTRY_STATE_LABEL,
|
||||
@@ -1165,13 +1165,11 @@ class BaseInvoiceAddressForm(forms.ModelForm):
|
||||
self.fields['vat_id'].help_text = '<br/>'.join([
|
||||
str(_('Optional, but depending on the country you reside in we might need to charge you '
|
||||
'additional taxes if you do not enter it.')),
|
||||
str(_('If you are registered in Switzerland, you can enter your UID instead.')),
|
||||
])
|
||||
else:
|
||||
self.fields['vat_id'].help_text = '<br/>'.join([
|
||||
str(_('Optional, but it might be required for you to claim tax benefits on your invoice '
|
||||
'depending on your and the seller’s country of residence.')),
|
||||
str(_('If you are registered in Switzerland, you can enter your UID instead.')),
|
||||
])
|
||||
|
||||
transmission_type_choices = [
|
||||
@@ -1358,13 +1356,24 @@ class BaseInvoiceAddressForm(forms.ModelForm):
|
||||
"transmission method.")}
|
||||
)
|
||||
|
||||
vat_id_applicable = (
|
||||
'vat_id' in self.fields and
|
||||
data.get('is_business') and
|
||||
ask_for_vat_id(data.get('country'))
|
||||
)
|
||||
vat_id_required = vat_id_applicable and str(data.get('country')) in self.event.settings.invoice_address_vatid_required_countries
|
||||
if vat_id_required and not data.get('vat_id'):
|
||||
raise ValidationError({
|
||||
"vat_id": _("This field is required.")
|
||||
})
|
||||
|
||||
if self.validate_vat_id and self.instance.vat_id_validated and 'vat_id' not in self.changed_data:
|
||||
pass
|
||||
elif self.validate_vat_id and data.get('is_business') and ask_for_vat_id(data.get('country')) and data.get('vat_id'):
|
||||
pass # Skip re-validation if it is validated
|
||||
elif self.validate_vat_id and vat_id_applicable:
|
||||
try:
|
||||
normalized_id = validate_vat_id(data.get('vat_id'), str(data.get('country')))
|
||||
self.instance.vat_id_validated = True
|
||||
self.instance.vat_id = normalized_id
|
||||
self.instance.vat_id = data['vat_id'] = normalized_id
|
||||
except VATIDFinalError as e:
|
||||
if self.all_optional:
|
||||
self.instance.vat_id_validated = False
|
||||
@@ -1372,6 +1381,9 @@ class BaseInvoiceAddressForm(forms.ModelForm):
|
||||
else:
|
||||
raise ValidationError({"vat_id": e.message})
|
||||
except VATIDTemporaryError as e:
|
||||
# We couldn't check it online, but we can still normalize it
|
||||
normalized_id = normalize_vat_id(data.get('vat_id'), str(data.get('country')))
|
||||
self.instance.vat_id = data['vat_id'] = normalized_id
|
||||
self.instance.vat_id_validated = False
|
||||
if self.request and self.vat_warning:
|
||||
messages.warning(self.request, e.message)
|
||||
|
||||
@@ -89,8 +89,6 @@ class User2FADeviceAddForm(forms.Form):
|
||||
|
||||
class UserPasswordChangeForm(forms.Form):
|
||||
error_messages = {
|
||||
'pw_current': _("Please enter your current password if you want to change your email address "
|
||||
"or password."),
|
||||
'pw_current_wrong': _("The current password you entered was not correct."),
|
||||
'pw_mismatch': _("Please enter the same password twice"),
|
||||
'rate_limit': _("For security reasons, please wait 5 minutes before you try again."),
|
||||
@@ -103,19 +101,19 @@ class UserPasswordChangeForm(forms.Form):
|
||||
attrs={'autocomplete': 'username'},
|
||||
))
|
||||
old_pw = forms.CharField(max_length=255,
|
||||
required=False,
|
||||
required=True,
|
||||
label=_("Your current password"),
|
||||
widget=forms.PasswordInput(
|
||||
attrs={'autocomplete': 'current-password'},
|
||||
))
|
||||
new_pw = forms.CharField(max_length=255,
|
||||
required=False,
|
||||
required=True,
|
||||
label=_("New password"),
|
||||
widget=forms.PasswordInput(
|
||||
attrs={'autocomplete': 'new-password'},
|
||||
))
|
||||
new_pw_repeat = forms.CharField(max_length=255,
|
||||
required=False,
|
||||
required=True,
|
||||
label=_("Repeat new password"),
|
||||
widget=forms.PasswordInput(
|
||||
attrs={'autocomplete': 'new-password'},
|
||||
@@ -130,7 +128,7 @@ class UserPasswordChangeForm(forms.Form):
|
||||
def clean_old_pw(self):
|
||||
old_pw = self.cleaned_data.get('old_pw')
|
||||
|
||||
if old_pw and settings.HAS_REDIS:
|
||||
if settings.HAS_REDIS:
|
||||
from django_redis import get_redis_connection
|
||||
rc = get_redis_connection("redis")
|
||||
cnt = rc.incr('pretix_pwchange_%s' % self.user.pk)
|
||||
@@ -141,7 +139,7 @@ class UserPasswordChangeForm(forms.Form):
|
||||
code='rate_limit',
|
||||
)
|
||||
|
||||
if old_pw and not check_password(old_pw, self.user.password):
|
||||
if not check_password(old_pw, self.user.password):
|
||||
raise forms.ValidationError(
|
||||
self.error_messages['pw_current_wrong'],
|
||||
code='pw_current_wrong',
|
||||
@@ -151,17 +149,22 @@ class UserPasswordChangeForm(forms.Form):
|
||||
|
||||
def clean_new_pw(self):
|
||||
password1 = self.cleaned_data.get('new_pw', '')
|
||||
if password1 and validate_password(password1, user=self.user) is not None:
|
||||
if validate_password(password1, user=self.user) is not None:
|
||||
raise forms.ValidationError(
|
||||
_(password_validators_help_texts()),
|
||||
code='pw_invalid'
|
||||
)
|
||||
if self.user.check_password(password1):
|
||||
raise forms.ValidationError(
|
||||
self.error_messages['pw_equal'],
|
||||
code='pw_equal',
|
||||
)
|
||||
return password1
|
||||
|
||||
def clean_new_pw_repeat(self):
|
||||
password1 = self.cleaned_data.get('new_pw')
|
||||
password2 = self.cleaned_data.get('new_pw_repeat')
|
||||
if password1 and password1 != password2:
|
||||
if password1 != password2:
|
||||
raise forms.ValidationError(
|
||||
self.error_messages['pw_mismatch'],
|
||||
code='pw_mismatch'
|
||||
|
||||
@@ -32,7 +32,6 @@ from itertools import groupby
|
||||
from typing import Tuple
|
||||
|
||||
import bleach
|
||||
import vat_moss.exchange_rates
|
||||
from bidi import get_display
|
||||
from django.contrib.staticfiles import finders
|
||||
from django.db.models import Sum
|
||||
@@ -1059,7 +1058,7 @@ class ClassicInvoiceRenderer(BaseReportlabInvoiceRenderer):
|
||||
|
||||
def fmt(val):
|
||||
try:
|
||||
return vat_moss.exchange_rates.format(val, self.invoice.foreign_currency_display)
|
||||
return money_filter(val, self.invoice.foreign_currency_display)
|
||||
except ValueError:
|
||||
return localize(val) + ' ' + self.invoice.foreign_currency_display
|
||||
|
||||
|
||||
@@ -19,8 +19,11 @@
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
import base64
|
||||
import hashlib
|
||||
import re
|
||||
|
||||
import dns.resolver
|
||||
from django import forms
|
||||
from django.core.exceptions import ValidationError
|
||||
from django.utils.translation import gettext_lazy as _, pgettext
|
||||
@@ -123,6 +126,9 @@ class PeppolIdValidator:
|
||||
"9959": ".*",
|
||||
}
|
||||
|
||||
def __init__(self, validate_online=False):
|
||||
self.validate_online = validate_online
|
||||
|
||||
def __call__(self, value):
|
||||
if ":" not in value:
|
||||
raise ValidationError(_("A Peppol participant ID always starts with a prefix, followed by a colon (:)."))
|
||||
@@ -136,6 +142,28 @@ class PeppolIdValidator:
|
||||
raise ValidationError(_("The Peppol participant ID does not match the validation rules for the prefix "
|
||||
"%(number)s. Please reach out to us if you are sure this ID is correct."),
|
||||
params={"number": prefix})
|
||||
|
||||
if self.validate_online:
|
||||
base_hostnames = ['edelivery.tech.ec.europa.eu', 'acc.edelivery.tech.ec.europa.eu']
|
||||
smp_id = base64.b32encode(hashlib.sha256(value.lower().encode()).digest()).decode().rstrip("=")
|
||||
for base_hostname in base_hostnames:
|
||||
smp_domain = f'{smp_id}.iso6523-actorid-upis.{base_hostname}'
|
||||
resolver = dns.resolver.Resolver()
|
||||
try:
|
||||
answers = resolver.resolve(smp_domain, 'NAPTR', lifetime=1.0)
|
||||
if answers:
|
||||
return value
|
||||
except (dns.resolver.NXDOMAIN, dns.resolver.NoAnswer):
|
||||
# ID not registered, do not set found=True
|
||||
pass
|
||||
except Exception: # noqa
|
||||
# Error likely on our end or infrastructure is down, allow user to proceed
|
||||
return value
|
||||
|
||||
raise ValidationError(
|
||||
_("The Peppol participant ID is not registered on the Peppol network."),
|
||||
)
|
||||
|
||||
return value
|
||||
|
||||
|
||||
@@ -155,7 +183,9 @@ class PeppolTransmissionType(TransmissionType):
|
||||
"transmission_peppol_participant_id": forms.CharField(
|
||||
label=_("Peppol participant ID"),
|
||||
validators=[
|
||||
PeppolIdValidator(),
|
||||
PeppolIdValidator(
|
||||
validate_online=True,
|
||||
),
|
||||
]
|
||||
),
|
||||
}
|
||||
|
||||
@@ -47,6 +47,19 @@ class DataImportError(LazyLocaleException):
|
||||
super().__init__(msg)
|
||||
|
||||
|
||||
def rename_duplicates(values):
|
||||
used = set()
|
||||
had_duplicates = False
|
||||
for i, value in enumerate(values):
|
||||
c = 0
|
||||
while values[i] in used:
|
||||
c += 1
|
||||
values[i] = f'{value}__{c}'
|
||||
had_duplicates = True
|
||||
used.add(values[i])
|
||||
return had_duplicates
|
||||
|
||||
|
||||
def parse_csv(file, length=None, mode="strict", charset=None):
|
||||
file.seek(0)
|
||||
data = file.read(length)
|
||||
@@ -70,6 +83,7 @@ def parse_csv(file, length=None, mode="strict", charset=None):
|
||||
return None
|
||||
|
||||
reader = csv.DictReader(io.StringIO(data), dialect=dialect)
|
||||
reader._had_duplicates = rename_duplicates(reader.fieldnames)
|
||||
return reader
|
||||
|
||||
|
||||
|
||||
@@ -31,6 +31,7 @@ from django.urls import reverse
|
||||
from django.utils.crypto import get_random_string
|
||||
from django.utils.functional import cached_property
|
||||
|
||||
from pretix.helpers.celery import get_task_priority
|
||||
from pretix.helpers.json import CustomJSONEncoder
|
||||
|
||||
|
||||
@@ -131,9 +132,15 @@ class LoggingMixin:
|
||||
logentry.save()
|
||||
|
||||
if logentry.notification_type:
|
||||
notify.apply_async(args=(logentry.pk,))
|
||||
notify.apply_async(
|
||||
args=(logentry.pk,),
|
||||
priority=get_task_priority("notifications", logentry.organizer_id),
|
||||
)
|
||||
if logentry.webhook_type:
|
||||
notify_webhooks.apply_async(args=(logentry.pk,))
|
||||
notify_webhooks.apply_async(
|
||||
args=(logentry.pk,),
|
||||
priority=get_task_priority("notifications", logentry.organizer_id),
|
||||
)
|
||||
|
||||
return logentry
|
||||
|
||||
|
||||
@@ -35,11 +35,14 @@
|
||||
import json
|
||||
import logging
|
||||
|
||||
from django.conf import settings
|
||||
from django.contrib.contenttypes.fields import GenericForeignKey
|
||||
from django.contrib.contenttypes.models import ContentType
|
||||
from django.db import connections, models
|
||||
from django.utils.functional import cached_property
|
||||
|
||||
from pretix.helpers.celery import get_task_priority
|
||||
|
||||
|
||||
class VisibleOnlyManager(models.Manager):
|
||||
def get_queryset(self):
|
||||
@@ -186,7 +189,19 @@ class LogEntry(models.Model):
|
||||
|
||||
to_notify = [o.id for o in objects if o.notification_type]
|
||||
if to_notify:
|
||||
notify.apply_async(args=(to_notify,))
|
||||
organizer_ids = set(o.organizer_id for o in objects if o.notification_type)
|
||||
notify.apply_async(
|
||||
args=(to_notify,),
|
||||
priority=settings.PRIORITY_CELERY_HIGHEST_FUNC(
|
||||
get_task_priority("notifications", oid) for oid in organizer_ids
|
||||
),
|
||||
)
|
||||
to_wh = [o.id for o in objects if o.webhook_type]
|
||||
if to_wh:
|
||||
notify_webhooks.apply_async(args=(to_wh,))
|
||||
organizer_ids = set(o.organizer_id for o in objects if o.webhook_type)
|
||||
notify_webhooks.apply_async(
|
||||
args=(to_wh,),
|
||||
priority=settings.PRIORITY_CELERY_HIGHEST_FUNC(
|
||||
get_task_priority("notifications", oid) for oid in organizer_ids
|
||||
),
|
||||
)
|
||||
|
||||
@@ -623,7 +623,7 @@ class Voucher(LoggedModel):
|
||||
return max(1, self.min_usages - self.redeemed)
|
||||
|
||||
@classmethod
|
||||
def annotate_budget_used_orders(cls, qs):
|
||||
def annotate_budget_used(cls, qs):
|
||||
opq = OrderPosition.objects.filter(
|
||||
voucher_id=OuterRef('pk'),
|
||||
voucher_budget_use__isnull=False,
|
||||
@@ -632,7 +632,7 @@ class Voucher(LoggedModel):
|
||||
Order.STATUS_PENDING
|
||||
]
|
||||
).order_by().values('voucher_id').annotate(s=Sum('voucher_budget_use')).values('s')
|
||||
return qs.annotate(budget_used_orders=Coalesce(Subquery(opq, output_field=models.DecimalField(max_digits=13, decimal_places=2)), Decimal('0.00')))
|
||||
return qs.annotate(budget_used=Coalesce(Subquery(opq, output_field=models.DecimalField(max_digits=13, decimal_places=2)), Decimal('0.00')))
|
||||
|
||||
def budget_used(self):
|
||||
ops = OrderPosition.objects.filter(
|
||||
|
||||
@@ -1361,6 +1361,11 @@ class CartManager:
|
||||
deleted_positions.add(op.position.pk)
|
||||
addons.delete()
|
||||
op.position.delete()
|
||||
if op.position.is_bundled:
|
||||
deleted_positions |= {a.pk for a in op.position.addon_to.addons.all()}
|
||||
deleted_positions.add(op.position.addon_to.pk)
|
||||
op.position.addon_to.addons.all().delete()
|
||||
op.position.addon_to.delete()
|
||||
else:
|
||||
raise AssertionError("ExtendOperation cannot affect more than one item")
|
||||
elif isinstance(op, self.VoucherOperation):
|
||||
|
||||
@@ -222,7 +222,7 @@ def mail(email: Union[str, Sequence[str]], subject: str, template: Union[str, La
|
||||
'invoice_company': ''
|
||||
})
|
||||
renderer = ClassicMailRenderer(None, organizer)
|
||||
content_plain = body_plain = render_mail(template, context)
|
||||
body_plain = render_mail(template, context, placeholder_mode=SafeFormatter.MODE_RICH_TO_PLAIN)
|
||||
subject = str(subject).format_map(TolerantDict(context))
|
||||
sender = (
|
||||
sender or
|
||||
@@ -316,6 +316,7 @@ def mail(email: Union[str, Sequence[str]], subject: str, template: Union[str, La
|
||||
|
||||
with override(timezone):
|
||||
try:
|
||||
content_plain = render_mail(template, context, placeholder_mode=None)
|
||||
if plain_text_only:
|
||||
body_html = None
|
||||
elif 'context' in inspect.signature(renderer.render).parameters:
|
||||
@@ -751,11 +752,11 @@ def mail_send(*args, **kwargs):
|
||||
mail_send_task.apply_async(args=args, kwargs=kwargs)
|
||||
|
||||
|
||||
def render_mail(template, context):
|
||||
def render_mail(template, context, placeholder_mode=SafeFormatter.MODE_RICH_TO_PLAIN):
|
||||
if isinstance(template, LazyI18nString):
|
||||
body = str(template)
|
||||
if context:
|
||||
body = format_map(body, context, mode=SafeFormatter.MODE_IGNORE_RICH)
|
||||
if context and placeholder_mode:
|
||||
body = format_map(body, context, mode=placeholder_mode)
|
||||
else:
|
||||
tpl = get_template(template)
|
||||
body = tpl.render(context)
|
||||
|
||||
@@ -32,6 +32,7 @@ from pretix.base.services.mail import mail_send_task
|
||||
from pretix.base.services.tasks import ProfiledTask, TransactionAwareTask
|
||||
from pretix.base.signals import notification
|
||||
from pretix.celery_app import app
|
||||
from pretix.helpers.celery import get_task_priority
|
||||
from pretix.helpers.urls import build_absolute_uri
|
||||
|
||||
|
||||
@@ -88,12 +89,18 @@ def notify(logentry_ids: list):
|
||||
for um, enabled in notify_specific.items():
|
||||
user, method = um
|
||||
if enabled:
|
||||
send_notification.apply_async(args=(logentry.id, notification_type.action_type, user.pk, method))
|
||||
send_notification.apply_async(
|
||||
args=(logentry.id, notification_type.action_type, user.pk, method),
|
||||
priority=get_task_priority("notifications", logentry.organizer_id),
|
||||
)
|
||||
|
||||
for um, enabled in notify_global.items():
|
||||
user, method = um
|
||||
if enabled and um not in notify_specific:
|
||||
send_notification.apply_async(args=(logentry.id, notification_type.action_type, user.pk, method))
|
||||
send_notification.apply_async(
|
||||
args=(logentry.id, notification_type.action_type, user.pk, method),
|
||||
priority=get_task_priority("notifications", logentry.organizer_id),
|
||||
)
|
||||
|
||||
notification.send(logentry.event, logentry_id=logentry.id, notification_type=notification_type.action_type)
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ from decimal import Decimal
|
||||
|
||||
from django.dispatch import receiver
|
||||
from django.utils.formats import date_format
|
||||
from django.utils.html import escape
|
||||
from django.utils.html import escape, mark_safe
|
||||
from django.utils.timezone import now
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
@@ -123,6 +123,10 @@ class BaseRichTextPlaceholder(BaseTextPlaceholder):
|
||||
def identifier(self):
|
||||
return self._identifier
|
||||
|
||||
@property
|
||||
def allowed_in_plain_content(self):
|
||||
return False
|
||||
|
||||
@property
|
||||
def required_context(self):
|
||||
return self._args
|
||||
@@ -194,6 +198,33 @@ class SimpleButtonPlaceholder(BaseRichTextPlaceholder):
|
||||
return f'{text}: {url}'
|
||||
|
||||
|
||||
class MarkdownTextPlaceholder(BaseRichTextPlaceholder):
|
||||
def __init__(self, identifier, args, func, sample, inline):
|
||||
super().__init__(identifier, args)
|
||||
self._func = func
|
||||
self._sample = sample
|
||||
self._snippet = inline
|
||||
|
||||
@property
|
||||
def allowed_in_plain_content(self):
|
||||
return self._snippet
|
||||
|
||||
def render_plain(self, **context):
|
||||
return self._func(**{k: context[k] for k in self._args})
|
||||
|
||||
def render_html(self, **context):
|
||||
return mark_safe(markdown_compile_email(self.render_plain(**context), snippet=self._snippet))
|
||||
|
||||
def render_sample_plain(self, event):
|
||||
if callable(self._sample):
|
||||
return self._sample(event)
|
||||
else:
|
||||
return self._sample
|
||||
|
||||
def render_sample_html(self, event):
|
||||
return mark_safe(markdown_compile_email(self.render_sample_plain(event), snippet=self._snippet))
|
||||
|
||||
|
||||
class PlaceholderContext(SafeFormatter):
|
||||
"""
|
||||
Holds the contextual arguments and corresponding list of available placeholders for formatting
|
||||
@@ -574,7 +605,7 @@ def base_placeholders(sender, **kwargs):
|
||||
'invoice_company', ['invoice_address'], lambda invoice_address: invoice_address.company or '',
|
||||
_('Sample Corporation')
|
||||
),
|
||||
SimpleFunctionalTextPlaceholder(
|
||||
MarkdownTextPlaceholder(
|
||||
'orders', ['event', 'orders'], lambda event, orders: '\n' + '\n\n'.join(
|
||||
'* {} - {}'.format(
|
||||
order.full_code,
|
||||
@@ -604,6 +635,7 @@ def base_placeholders(sender, **kwargs):
|
||||
{'code': 'OPKSB', 'secret': '09pjdksflosk3njd', 'hash': 'stuvwxy2z'}
|
||||
]
|
||||
),
|
||||
inline=False,
|
||||
),
|
||||
SimpleFunctionalTextPlaceholder(
|
||||
'hours', ['event', 'waiting_list_entry'], lambda event, waiting_list_entry:
|
||||
@@ -618,12 +650,13 @@ def base_placeholders(sender, **kwargs):
|
||||
'code', ['waiting_list_voucher'], lambda waiting_list_voucher: waiting_list_voucher.code,
|
||||
'68CYU2H6ZTP3WLK5'
|
||||
),
|
||||
SimpleFunctionalTextPlaceholder(
|
||||
MarkdownTextPlaceholder(
|
||||
# join vouchers with two spaces at end of line so markdown-parser inserts a <br>
|
||||
'voucher_list', ['voucher_list'], lambda voucher_list: ' \n'.join(voucher_list),
|
||||
' 68CYU2H6ZTP3WLK5\n 7MB94KKPVEPSMVF2'
|
||||
'68CYU2H6ZTP3WLK5 \n7MB94KKPVEPSMVF2',
|
||||
inline=False,
|
||||
),
|
||||
SimpleFunctionalTextPlaceholder(
|
||||
MarkdownTextPlaceholder(
|
||||
# join vouchers with two spaces at end of line so markdown-parser inserts a <br>
|
||||
'voucher_url_list', ['event', 'voucher_list'],
|
||||
lambda event, voucher_list: ' \n'.join([
|
||||
@@ -638,6 +671,7 @@ def base_placeholders(sender, **kwargs):
|
||||
) + '?voucher=' + c
|
||||
for c in ['68CYU2H6ZTP3WLK5', '7MB94KKPVEPSMVF2']
|
||||
]),
|
||||
inline=False,
|
||||
),
|
||||
SimpleFunctionalTextPlaceholder(
|
||||
'url', ['event', 'voucher_list'], lambda event, voucher_list: build_absolute_uri(event, 'presale:event.index', kwargs={
|
||||
@@ -656,13 +690,13 @@ def base_placeholders(sender, **kwargs):
|
||||
'comment', ['comment'], lambda comment: comment,
|
||||
_('An individual text with a reason can be inserted here.'),
|
||||
),
|
||||
SimpleFunctionalTextPlaceholder(
|
||||
MarkdownTextPlaceholder(
|
||||
'payment_info', ['order', 'payments'], _placeholder_payments,
|
||||
_('The amount has been charged to your card.'),
|
||||
_('The amount has been charged to your card.'), inline=False,
|
||||
),
|
||||
SimpleFunctionalTextPlaceholder(
|
||||
MarkdownTextPlaceholder(
|
||||
'payment_info', ['payment_info'], lambda payment_info: payment_info,
|
||||
_('Please transfer money to this bank account: 9999-9999-9999-9999'),
|
||||
_('Please transfer money to this bank account: 9999-9999-9999-9999'), inline=False,
|
||||
),
|
||||
SimpleFunctionalTextPlaceholder(
|
||||
'attendee_name', ['position'], lambda position: position.attendee_name,
|
||||
@@ -719,13 +753,13 @@ def base_placeholders(sender, **kwargs):
|
||||
))
|
||||
|
||||
for k, v in sender.meta_data.items():
|
||||
ph.append(SimpleFunctionalTextPlaceholder(
|
||||
ph.append(MarkdownTextPlaceholder(
|
||||
'meta_%s' % k, ['event'], lambda event, k=k: event.meta_data[k],
|
||||
v
|
||||
v, inline=True,
|
||||
))
|
||||
ph.append(SimpleFunctionalTextPlaceholder(
|
||||
ph.append(MarkdownTextPlaceholder(
|
||||
'meta_%s' % k, ['event_or_subevent'], lambda event_or_subevent, k=k: event_or_subevent.meta_data[k],
|
||||
v
|
||||
v, inline=True,
|
||||
))
|
||||
|
||||
return ph
|
||||
@@ -753,7 +787,7 @@ def get_available_placeholders(event, base_parameters, rich=False):
|
||||
if not isinstance(val, (list, tuple)):
|
||||
val = [val]
|
||||
for v in val:
|
||||
if isinstance(v, BaseRichTextPlaceholder) and not rich:
|
||||
if isinstance(v, BaseRichTextPlaceholder) and not rich and not v.allowed_in_plain_content:
|
||||
continue
|
||||
if all(rp in base_parameters for rp in v.required_context):
|
||||
params[v.identifier] = v
|
||||
@@ -775,13 +809,13 @@ def get_sample_context(event, context_parameters, rich=True):
|
||||
)
|
||||
)
|
||||
elif str(sample).strip().startswith('* ') or str(sample).startswith(' '):
|
||||
context_dict[k] = '<div class="placeholder" title="{}">{}</div>'.format(
|
||||
context_dict[k] = mark_safe('<div class="placeholder" title="{}">{}</div>'.format(
|
||||
lbl,
|
||||
markdown_compile_email(str(sample))
|
||||
)
|
||||
))
|
||||
else:
|
||||
context_dict[k] = '<span class="placeholder" title="{}">{}</span>'.format(
|
||||
context_dict[k] = mark_safe('<span class="placeholder" title="{}">{}</span>'.format(
|
||||
lbl,
|
||||
escape(sample)
|
||||
)
|
||||
))
|
||||
return context_dict
|
||||
|
||||
+186
-13
@@ -27,7 +27,6 @@ from decimal import Decimal
|
||||
from xml.etree import ElementTree
|
||||
|
||||
import requests
|
||||
import vat_moss.id
|
||||
from django.conf import settings
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from zeep import Client, Transport
|
||||
@@ -42,14 +41,142 @@ logger = logging.getLogger(__name__)
|
||||
error_messages = {
|
||||
'unavailable': _(
|
||||
'Your VAT ID could not be checked, as the VAT checking service of '
|
||||
'your country is currently not available. We will therefore '
|
||||
'need to charge VAT on your invoice. You can get the tax amount '
|
||||
'back via the VAT reimbursement process.'
|
||||
'your country is currently not available. We will therefore need to '
|
||||
'charge you the same tax rate as if you did not enter a VAT ID.'
|
||||
),
|
||||
'invalid': _('This VAT ID is not valid. Please re-check your input.'),
|
||||
'country_mismatch': _('Your VAT ID does not match the selected country.'),
|
||||
}
|
||||
|
||||
VAT_ID_PATTERNS = {
|
||||
# Patterns generated by consulting the following URLs:
|
||||
#
|
||||
# - http://en.wikipedia.org/wiki/VAT_identification_number
|
||||
# - http://ec.europa.eu/taxation_customs/vies/faq.html
|
||||
# - https://euipo.europa.eu/tunnel-web/secure/webdav/guest/document_library/Documents/COSME/VAT%20numbers%20EU.pdf
|
||||
# - http://www.skatteetaten.no/en/International-pages/Felles-innhold-benyttes-i-flere-malgrupper/Brochure/Guide-to-value-added-tax-in-Norway/?chapter=7159
|
||||
'AT': { # Austria
|
||||
'regex': '^U\\d{8}$',
|
||||
'country_code': 'AT'
|
||||
},
|
||||
'BE': { # Belgium
|
||||
'regex': '^(1|0?)\\d{9}$',
|
||||
'country_code': 'BE'
|
||||
},
|
||||
'BG': { # Bulgaria
|
||||
'regex': '^\\d{9,10}$',
|
||||
'country_code': 'BG'
|
||||
},
|
||||
'CH': { # Switzerland
|
||||
'regex': '^\\dE{9}$',
|
||||
'country_code': 'CH'
|
||||
},
|
||||
'CY': { # Cyprus
|
||||
'regex': '^\\d{8}[A-Z]$',
|
||||
'country_code': 'CY'
|
||||
},
|
||||
'CZ': { # Czech Republic
|
||||
'regex': '^\\d{8,10}$',
|
||||
'country_code': 'CZ'
|
||||
},
|
||||
'DE': { # Germany
|
||||
'regex': '^\\d{9}$',
|
||||
'country_code': 'DE'
|
||||
},
|
||||
'DK': { # Denmark
|
||||
'regex': '^\\d{8}$',
|
||||
'country_code': 'DK'
|
||||
},
|
||||
'EE': { # Estonia
|
||||
'regex': '^\\d{9}$',
|
||||
'country_code': 'EE'
|
||||
},
|
||||
'EL': { # Greece
|
||||
'regex': '^\\d{9}$',
|
||||
'country_code': 'GR'
|
||||
},
|
||||
'ES': { # Spain
|
||||
'regex': '^[A-Z0-9]\\d{7}[A-Z0-9]$',
|
||||
'country_code': 'ES'
|
||||
},
|
||||
'FI': { # Finland
|
||||
'regex': '^\\d{8}$',
|
||||
'country_code': 'FI'
|
||||
},
|
||||
'FR': { # France
|
||||
'regex': '^[A-Z0-9]{2}\\d{9}$',
|
||||
'country_code': 'FR'
|
||||
},
|
||||
'GB': { # United Kingdom
|
||||
'regex': '^(GD\\d{3}|HA\\d{3}|\\d{9}|\\d{12})$',
|
||||
'country_code': 'GB'
|
||||
},
|
||||
'HR': { # Croatia
|
||||
'regex': '^\\d{11}$',
|
||||
'country_code': 'HR'
|
||||
},
|
||||
'HU': { # Hungary
|
||||
'regex': '^\\d{8}$',
|
||||
'country_code': 'HU'
|
||||
},
|
||||
'IE': { # Ireland
|
||||
'regex': '^(\\d{7}[A-Z]{1,2}|\\d[A-Z+*]\\d{5}[A-Z])$',
|
||||
'country_code': 'IE'
|
||||
},
|
||||
'IT': { # Italy
|
||||
'regex': '^\\d{11}$',
|
||||
'country_code': 'IT'
|
||||
},
|
||||
'LT': { # Lithuania
|
||||
'regex': '^(\\d{9}|\\d{12})$',
|
||||
'country_code': 'LT'
|
||||
},
|
||||
'LU': { # Luxembourg
|
||||
'regex': '^\\d{8}$',
|
||||
'country_code': 'LU'
|
||||
},
|
||||
'LV': { # Latvia
|
||||
'regex': '^\\d{11}$',
|
||||
'country_code': 'LV'
|
||||
},
|
||||
'MT': { # Malta
|
||||
'regex': '^\\d{8}$',
|
||||
'country_code': 'MT'
|
||||
},
|
||||
'NL': { # Netherlands
|
||||
'regex': '^\\d{9}B\\d{2}$',
|
||||
'country_code': 'NL'
|
||||
},
|
||||
'NO': { # Norway
|
||||
'regex': '^\\d{9}MVA$',
|
||||
'country_code': 'NO'
|
||||
},
|
||||
'PL': { # Poland
|
||||
'regex': '^\\d{10}$',
|
||||
'country_code': 'PL'
|
||||
},
|
||||
'PT': { # Portugal
|
||||
'regex': '^\\d{9}$',
|
||||
'country_code': 'PT'
|
||||
},
|
||||
'RO': { # Romania
|
||||
'regex': '^\\d{2,10}$',
|
||||
'country_code': 'RO'
|
||||
},
|
||||
'SE': { # Sweden
|
||||
'regex': '^\\d{12}$',
|
||||
'country_code': 'SE'
|
||||
},
|
||||
'SI': { # Slovenia
|
||||
'regex': '^\\d{8}$',
|
||||
'country_code': 'SI'
|
||||
},
|
||||
'SK': { # Slovakia
|
||||
'regex': '^\\d{10}$',
|
||||
'country_code': 'SK'
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
class VATIDError(Exception):
|
||||
def __init__(self, message):
|
||||
@@ -64,13 +191,57 @@ class VATIDTemporaryError(VATIDError):
|
||||
pass
|
||||
|
||||
|
||||
def normalize_vat_id(vat_id, country_code):
|
||||
"""
|
||||
Accepts a VAT ID and normaizes it, getting rid of spaces, periods, dashes
|
||||
etc and converting it to upper case.
|
||||
|
||||
Original function from https://github.com/wbond/vat_moss-python
|
||||
Copyright (c) 2015 Will Bond <will@wbond.net>
|
||||
MIT License
|
||||
"""
|
||||
if not vat_id:
|
||||
return None
|
||||
|
||||
if not isinstance(vat_id, str):
|
||||
raise TypeError('VAT ID is not a string')
|
||||
|
||||
if len(vat_id) < 3:
|
||||
raise ValueError('VAT ID must be at least three character long')
|
||||
|
||||
# Normalize the ID for simpler regexes
|
||||
vat_id = re.sub('\\s+', '', vat_id)
|
||||
vat_id = vat_id.replace('-', '')
|
||||
vat_id = vat_id.replace('.', '')
|
||||
vat_id = vat_id.upper()
|
||||
|
||||
# Clean the different shapes a number can take in Switzerland depending on purpse
|
||||
if country_code == "CH":
|
||||
vat_id = re.sub('[^A-Z0-9]', '', vat_id.replace('HR', '').replace('MWST', ''))
|
||||
|
||||
# Fix people using GR prefix for Greece
|
||||
if vat_id[0:2] == "GR" and country_code == "GR":
|
||||
vat_id = "EL" + vat_id[2:]
|
||||
|
||||
# Check if we already have a valid country prefix. If not, we try to figure out if we can
|
||||
# add one, since in some countries (e.g. Italy) it's very custom to enter it without the prefix
|
||||
if vat_id[:2] in VAT_ID_PATTERNS and re.match(VAT_ID_PATTERNS[vat_id[0:2]]['regex'], vat_id[2:]):
|
||||
# Prefix set and prefix matches pattern, nothing to do
|
||||
pass
|
||||
elif re.match(VAT_ID_PATTERNS[cc_to_vat_prefix(country_code)]['regex'], vat_id):
|
||||
# Prefix not set but adding it fixes pattern
|
||||
vat_id = cc_to_vat_prefix(country_code) + vat_id
|
||||
else:
|
||||
# We have no idea what this is
|
||||
pass
|
||||
|
||||
return vat_id
|
||||
|
||||
|
||||
def _validate_vat_id_NO(vat_id, country_code):
|
||||
# Inspired by vat_moss library
|
||||
if not vat_id.startswith("NO"):
|
||||
# prefix is not usually used in Norway, but expected by vat_moss library
|
||||
vat_id = "NO" + vat_id
|
||||
try:
|
||||
vat_id = vat_moss.id.normalize(vat_id)
|
||||
vat_id = normalize_vat_id(vat_id, country_code)
|
||||
except ValueError:
|
||||
raise VATIDFinalError(error_messages['invalid'])
|
||||
|
||||
@@ -104,7 +275,7 @@ def _validate_vat_id_NO(vat_id, country_code):
|
||||
def _validate_vat_id_EU(vat_id, country_code):
|
||||
# Inspired by vat_moss library
|
||||
try:
|
||||
vat_id = vat_moss.id.normalize(vat_id)
|
||||
vat_id = normalize_vat_id(vat_id, country_code)
|
||||
except ValueError:
|
||||
raise VATIDFinalError(error_messages['invalid'])
|
||||
|
||||
@@ -112,11 +283,10 @@ def _validate_vat_id_EU(vat_id, country_code):
|
||||
raise VATIDFinalError(error_messages['invalid'])
|
||||
|
||||
number = vat_id[2:]
|
||||
|
||||
if vat_id[:2] != cc_to_vat_prefix(country_code):
|
||||
raise VATIDFinalError(error_messages['country_mismatch'])
|
||||
|
||||
if not re.match(vat_moss.id.ID_PATTERNS[cc_to_vat_prefix(country_code)]['regex'], number):
|
||||
if not re.match(VAT_ID_PATTERNS[cc_to_vat_prefix(country_code)]['regex'], number):
|
||||
raise VATIDFinalError(error_messages['invalid'])
|
||||
|
||||
# We are relying on the country code of the normalized VAT-ID and not the user/InvoiceAddress-provided
|
||||
@@ -175,9 +345,12 @@ def _validate_vat_id_EU(vat_id, country_code):
|
||||
|
||||
def _validate_vat_id_CH(vat_id, country_code):
|
||||
if vat_id[:3] != 'CHE':
|
||||
raise VATIDFinalError(_('Your VAT ID does not match the selected country.'))
|
||||
raise VATIDFinalError(error_messages['country_mismatch'])
|
||||
|
||||
vat_id = re.sub('[^A-Z0-9]', '', vat_id.replace('HR', '').replace('MWST', ''))
|
||||
try:
|
||||
vat_id = normalize_vat_id(vat_id, country_code)
|
||||
except ValueError:
|
||||
raise VATIDFinalError(error_messages['invalid'])
|
||||
try:
|
||||
transport = Transport(
|
||||
cache=SqliteCache(os.path.join(settings.CACHE_DIR, "validate_vat_id_ch_zeep_cache.db")),
|
||||
|
||||
@@ -113,6 +113,11 @@ def assign_automatically(event: Event, user_id: int=None, subevent_id: int=None)
|
||||
|
||||
lock_objects(quotas, shared_lock_objects=[event])
|
||||
for wle in qs:
|
||||
# add this event to wle.item as it is not yet cached and is needed in check_quotas
|
||||
wle.item.event = event
|
||||
if wle.variation:
|
||||
wle.variation.item = wle.item
|
||||
|
||||
if (wle.item_id, wle.variation_id, wle.subevent_id) in gone:
|
||||
continue
|
||||
ev = (wle.subevent or event)
|
||||
|
||||
@@ -629,13 +629,40 @@ DEFAULTS = {
|
||||
'form_kwargs': dict(
|
||||
label=_("Ask for VAT ID"),
|
||||
help_text=format_lazy(
|
||||
_("Only works if an invoice address is asked for. VAT ID is never required and only requested from "
|
||||
"business customers in the following countries: {countries}"),
|
||||
_("Only works if an invoice address is asked for. VAT ID is only requested from business customers "
|
||||
"in the following countries: {countries}."),
|
||||
countries=lazy(lambda *args: ', '.join(sorted(gettext(Country(cc).name) for cc in VAT_ID_COUNTRIES)), str)()
|
||||
),
|
||||
widget=forms.CheckboxInput(attrs={'data-checkbox-dependency': '#id_invoice_address_asked'}),
|
||||
)
|
||||
},
|
||||
'invoice_address_vatid_required_countries': {
|
||||
'default': ['IT', 'GR'],
|
||||
'type': list,
|
||||
'form_class': forms.MultipleChoiceField,
|
||||
'serializer_class': serializers.MultipleChoiceField,
|
||||
'serializer_kwargs': dict(
|
||||
choices=lazy(
|
||||
lambda *args: sorted([(cc, gettext(Country(cc).name)) for cc in VAT_ID_COUNTRIES], key=lambda c: c[1]),
|
||||
list
|
||||
)(),
|
||||
),
|
||||
'form_kwargs': dict(
|
||||
label=_("Require VAT ID in"),
|
||||
choices=lazy(
|
||||
lambda *args: sorted([(cc, gettext(Country(cc).name)) for cc in VAT_ID_COUNTRIES], key=lambda c: c[1]),
|
||||
list
|
||||
)(),
|
||||
help_text=format_lazy(
|
||||
_("VAT ID is optional by default, because not all businesses are assigned a VAT ID in all countries. "
|
||||
"VAT ID will be required for all business addresses in the selected countries."),
|
||||
),
|
||||
widget=forms.CheckboxSelectMultiple(attrs={
|
||||
"class": "scrolling-multiple-choice",
|
||||
'data-display-dependency': '#id_invoice_address_vatid'
|
||||
}),
|
||||
)
|
||||
},
|
||||
'invoice_address_explanation_text': {
|
||||
'default': '',
|
||||
'type': LazyI18nString,
|
||||
|
||||
@@ -44,6 +44,7 @@ from django.conf import settings
|
||||
from django.core import signing
|
||||
from django.urls import reverse
|
||||
from django.utils.functional import SimpleLazyObject
|
||||
from django.utils.html import escape
|
||||
from django.utils.http import url_has_allowed_host_and_scheme
|
||||
from django.utils.safestring import mark_safe
|
||||
from markdown import Extension
|
||||
@@ -52,6 +53,8 @@ from markdown.postprocessors import Postprocessor
|
||||
from markdown.treeprocessors import UnescapeTreeprocessor
|
||||
from tlds import tld_set
|
||||
|
||||
from pretix.helpers.format import SafeFormatter, format_map
|
||||
|
||||
register = template.Library()
|
||||
|
||||
|
||||
@@ -321,27 +324,44 @@ class LinkifyAndCleanExtension(Extension):
|
||||
)
|
||||
|
||||
|
||||
def markdown_compile_email(source, allowed_tags=ALLOWED_TAGS, allowed_attributes=ALLOWED_ATTRIBUTES):
|
||||
def markdown_compile_email(source, allowed_tags=None, allowed_attributes=ALLOWED_ATTRIBUTES, snippet=False, context=None):
|
||||
if allowed_tags is None:
|
||||
allowed_tags = ALLOWED_TAGS_SNIPPET if snippet else ALLOWED_TAGS
|
||||
|
||||
context_callbacks = []
|
||||
if context:
|
||||
# This is a workaround to fix placeholders in URL targets
|
||||
def context_callback(attrs, new=False):
|
||||
if (None, "href") in attrs and "{" in attrs[None, "href"]:
|
||||
# Do not use MODE_RICH_TO_HTML to avoid recursive linkification
|
||||
attrs[None, "href"] = escape(format_map(attrs[None, "href"], context=context, mode=SafeFormatter.MODE_RICH_TO_PLAIN))
|
||||
return attrs
|
||||
|
||||
context_callbacks.append(context_callback)
|
||||
|
||||
linker = bleach.Linker(
|
||||
url_re=URL_RE,
|
||||
email_re=EMAIL_RE,
|
||||
callbacks=DEFAULT_CALLBACKS + [truelink_callback, abslink_callback],
|
||||
callbacks=context_callbacks + DEFAULT_CALLBACKS + [truelink_callback, abslink_callback],
|
||||
parse_email=True
|
||||
)
|
||||
exts = [
|
||||
'markdown.extensions.sane_lists',
|
||||
'markdown.extensions.tables',
|
||||
EmailNl2BrExtension(),
|
||||
LinkifyAndCleanExtension(
|
||||
linker,
|
||||
tags=set(allowed_tags),
|
||||
attributes=allowed_attributes,
|
||||
protocols=ALLOWED_PROTOCOLS,
|
||||
strip=snippet,
|
||||
)
|
||||
]
|
||||
if snippet:
|
||||
exts.append(SnippetExtension())
|
||||
return markdown.markdown(
|
||||
source,
|
||||
extensions=[
|
||||
'markdown.extensions.sane_lists',
|
||||
'markdown.extensions.tables',
|
||||
EmailNl2BrExtension(),
|
||||
LinkifyAndCleanExtension(
|
||||
linker,
|
||||
tags=set(allowed_tags),
|
||||
attributes=allowed_attributes,
|
||||
protocols=ALLOWED_PROTOCOLS,
|
||||
strip=False,
|
||||
)
|
||||
]
|
||||
extensions=exts
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
import pycountry
|
||||
from django.http import JsonResponse
|
||||
from django.shortcuts import get_object_or_404
|
||||
from django.utils.translation import pgettext
|
||||
from django.utils.translation import gettext, pgettext, pgettext_lazy
|
||||
from django_countries.fields import Country
|
||||
from django_scopes import scope
|
||||
|
||||
@@ -36,6 +36,22 @@ from pretix.base.settings import (
|
||||
COUNTRIES_WITH_STATE_IN_ADDRESS, COUNTRY_STATE_LABEL,
|
||||
)
|
||||
|
||||
VAT_ID_LABELS = {
|
||||
# VAT ID is a EU concept and Switzerland has a distinct, but differently-named concept
|
||||
"CH": pgettext_lazy("tax_id_swiss", "UID"), # Translators: Only translate to French (IDE) and Italien (IDI), otherwise keep the same
|
||||
|
||||
# Awareness around VAT IDs differes by EU country. For example, in Germany the VAT ID is assigned
|
||||
# separately to each company and only used in cross-country transactions. Therefore, it makes sense
|
||||
# to call it just "VAT ID" on the form, and people will either know their VAT ID or they don't.
|
||||
# In contrast, in Italy the EU-compatible VAT ID is not separately assigned, but is just "IT" + the national tax
|
||||
# number (Partita IVA) and also used on domestic transactions. So someone who never purchased something international
|
||||
# for their company, might still know the value, if we call it the right way and not just "VAT ID".
|
||||
"IT": pgettext_lazy("tax_id_italy", "VAT ID / P.IVA"), # Translators: Translate to only "P.IVA" in Italian, keep second part as-is in other languages
|
||||
"GR": pgettext_lazy("tax_id_greece", "VAT ID / TIN"), # Translators: Translate to only "ΑΦΜ" in Greek
|
||||
"ES": pgettext_lazy("tax_id_spain", "VAT ID / NIF"), # Translators: Translate to only "NIF" in Spanish
|
||||
"PT": pgettext_lazy("tax_id_portugal", "VAT ID / NIF"), # Translators: Translate to only "NIF" in Portuguese
|
||||
}
|
||||
|
||||
|
||||
def _info(cc):
|
||||
info = {
|
||||
@@ -47,7 +63,12 @@ def _info(cc):
|
||||
'required': 'if_any' if cc in COUNTRIES_WITH_STATE_IN_ADDRESS else False,
|
||||
'label': COUNTRY_STATE_LABEL.get(cc, pgettext('address', 'State')),
|
||||
},
|
||||
'vat_id': {'visible': cc in VAT_ID_COUNTRIES, 'required': False},
|
||||
'vat_id': {
|
||||
'visible': cc in VAT_ID_COUNTRIES,
|
||||
'required': False,
|
||||
'label': VAT_ID_LABELS.get(cc, gettext("VAT ID")),
|
||||
'helptext_visible': True,
|
||||
},
|
||||
}
|
||||
if cc not in COUNTRIES_WITH_STATE_IN_ADDRESS:
|
||||
return {'data': [], **info}
|
||||
@@ -124,4 +145,10 @@ def address_form(request):
|
||||
"required": transmission_type.identifier == selected_transmission_type and k in required
|
||||
}
|
||||
|
||||
if is_business and country in event.settings.invoice_address_vatid_required_countries and info["vat_id"]["visible"]:
|
||||
info["vat_id"]["required"] = True
|
||||
if info["vat_id"]["required"]:
|
||||
# The help text explains that it is optional, so we want to hide that if it is required
|
||||
info["vat_id"]["helptext_visible"] = False
|
||||
|
||||
return JsonResponse(info)
|
||||
|
||||
@@ -927,6 +927,7 @@ class InvoiceSettingsForm(EventSettingsValidationMixin, SettingsForm):
|
||||
'invoice_address_asked',
|
||||
'invoice_address_required',
|
||||
'invoice_address_vatid',
|
||||
'invoice_address_vatid_required_countries',
|
||||
'invoice_address_company_required',
|
||||
'invoice_address_beneficiary',
|
||||
'invoice_address_custom_field',
|
||||
|
||||
@@ -974,7 +974,7 @@ class EventCancelForm(FormPlaceholderMixin, forms.Form):
|
||||
self._set_field_placeholders('send_subject', ['event_or_subevent', 'refund_amount', 'position_or_address',
|
||||
'order', 'event'])
|
||||
self._set_field_placeholders('send_message', ['event_or_subevent', 'refund_amount', 'position_or_address',
|
||||
'order', 'event'])
|
||||
'order', 'event'], rich=True)
|
||||
self.fields['send_waitinglist_subject'] = I18nFormField(
|
||||
label=_("Subject"),
|
||||
required=True,
|
||||
@@ -998,7 +998,7 @@ class EventCancelForm(FormPlaceholderMixin, forms.Form):
|
||||
))
|
||||
)
|
||||
self._set_field_placeholders('send_waitinglist_subject', ['event_or_subevent', 'event'])
|
||||
self._set_field_placeholders('send_waitinglist_message', ['event_or_subevent', 'event'])
|
||||
self._set_field_placeholders('send_waitinglist_message', ['event_or_subevent', 'event'], rich=True)
|
||||
|
||||
if self.event.has_subevents:
|
||||
self.fields['subevent'].queryset = self.event.subevents.all()
|
||||
|
||||
@@ -308,8 +308,8 @@ class VoucherBulkForm(VoucherForm):
|
||||
)
|
||||
Recipient = namedtuple('Recipient', 'email number name tag')
|
||||
|
||||
def _set_field_placeholders(self, fn, base_parameters):
|
||||
placeholders = get_available_placeholders(self.instance.event, base_parameters)
|
||||
def _set_field_placeholders(self, fn, base_parameters, rich=False):
|
||||
placeholders = get_available_placeholders(self.instance.event, base_parameters, rich=rich)
|
||||
ht = format_placeholders_help_text(placeholders, self.instance.event)
|
||||
|
||||
if self.fields[fn].help_text:
|
||||
@@ -345,7 +345,7 @@ class VoucherBulkForm(VoucherForm):
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
self._set_field_placeholders('send_subject', ['event', 'name'])
|
||||
self._set_field_placeholders('send_message', ['event', 'voucher_list', 'name'])
|
||||
self._set_field_placeholders('send_message', ['event', 'voucher_list', 'name'], rich=True)
|
||||
|
||||
with language(self.instance.event.settings.locale, self.instance.event.settings.region):
|
||||
for f in ("send_subject", "send_message"):
|
||||
|
||||
@@ -126,7 +126,9 @@
|
||||
{% endif %}
|
||||
<a class="navbar-brand" href="{% url "control:index" %}">
|
||||
<img src="{% static "pretixbase/img/pretix-icon-white-mini.svg" %}" />
|
||||
{{ settings.PRETIX_INSTANCE_NAME }}
|
||||
<span>
|
||||
{{ settings.PRETIX_INSTANCE_NAME }}
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav navbar-nav navbar-top-links navbar-left flip hidden-xs">
|
||||
|
||||
@@ -43,6 +43,7 @@
|
||||
{% bootstrap_field form.invoice_name_required layout="control" %}
|
||||
{% bootstrap_field form.invoice_address_company_required layout="control" %}
|
||||
{% bootstrap_field form.invoice_address_vatid layout="control" %}
|
||||
{% bootstrap_field form.invoice_address_vatid_required_countries layout="control" %}
|
||||
{% bootstrap_field form.invoice_address_beneficiary layout="control" %}
|
||||
{% bootstrap_field form.invoice_address_not_asked_free layout="control" %}
|
||||
{% bootstrap_field form.invoice_address_custom_field layout="control" %}
|
||||
|
||||
@@ -165,7 +165,7 @@
|
||||
{% if v.budget|default_if_none:"NONE" != "NONE" %}
|
||||
<br>
|
||||
<small class="text-muted">
|
||||
{{ v.budget_used_orders|money:request.event.currency }} / {{ v.budget|money:request.event.currency }}
|
||||
{{ v.budget_used|money:request.event.currency }} / {{ v.budget|money:request.event.currency }}
|
||||
</small>
|
||||
{% endif %}
|
||||
</td>
|
||||
|
||||
@@ -146,7 +146,7 @@ class BaseProcessView(AsyncAction, FormView):
|
||||
else:
|
||||
charset = None
|
||||
try:
|
||||
return parse_csv(self.file.file, 1024 * 1024, charset=charset)
|
||||
reader = parse_csv(self.file.file, 1024 * 1024, charset=charset)
|
||||
except UnicodeDecodeError:
|
||||
messages.warning(
|
||||
self.request,
|
||||
@@ -155,7 +155,16 @@ class BaseProcessView(AsyncAction, FormView):
|
||||
"Some characters were replaced with a placeholder."
|
||||
)
|
||||
)
|
||||
return parse_csv(self.file.file, 1024 * 1024, "replace", charset=charset)
|
||||
reader = parse_csv(self.file.file, 1024 * 1024, "replace", charset=charset)
|
||||
if reader._had_duplicates:
|
||||
messages.warning(
|
||||
self.request,
|
||||
_(
|
||||
"Multiple columns of the CSV file have the same name and were renamed automatically. We "
|
||||
"recommend that you rename these in your source file to avoid problems during import."
|
||||
)
|
||||
)
|
||||
return reader
|
||||
|
||||
@cached_property
|
||||
def parsed_list(self):
|
||||
|
||||
@@ -87,7 +87,7 @@ class VoucherList(PaginationMixin, EventPermissionRequiredMixin, ListView):
|
||||
|
||||
@scopes_disabled() # we have an event check here, and we can save some performance on subqueries
|
||||
def get_queryset(self):
|
||||
qs = Voucher.annotate_budget_used_orders(self.request.event.vouchers.exclude(
|
||||
qs = Voucher.annotate_budget_used(self.request.event.vouchers.exclude(
|
||||
Exists(WaitingListEntry.objects.filter(voucher_id=OuterRef('pk')))
|
||||
).select_related(
|
||||
'item', 'variation', 'seat'
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-today pretix GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
from django.conf import settings
|
||||
|
||||
THRESHOLD_DOWNGRADE_TO_MID = 50
|
||||
THRESHOLD_DOWNGRADE_TO_LOW = 250
|
||||
|
||||
|
||||
def get_task_priority(shard, organizer_id):
|
||||
"""
|
||||
This is an attempt to build a simple "fair-use" policy for webhooks and notifications. The problem is that when
|
||||
one organizer creates e.g. 20,000 orders through the API, that might schedule 20,000 webhooks and every other
|
||||
organizer will need to wait for these webhooks to go through.
|
||||
|
||||
We try to fix that by building three queues: high-prio, mid-prio, and low-prio. Every organizer starts in the
|
||||
high-prio queue, and all their tasks are routed immediately. Once an organizer submits more than X jobs of a
|
||||
certain type per minute, they get downgraded to the mid-prio queue, and then – if they submit even more – to the
|
||||
low-prio queue. That way, if another organizer has "regular usage", they are prioritized over the organizer with
|
||||
high load.
|
||||
"""
|
||||
from django_redis import get_redis_connection
|
||||
|
||||
if not settings.HAS_REDIS:
|
||||
return settings.PRIORITY_CELERY_HIGH
|
||||
|
||||
# We use redis directly instead of the Django cache API since the Django cache API does not support INCR for
|
||||
# nonexistant keys
|
||||
rc = get_redis_connection("redis")
|
||||
|
||||
cache_key = f"pretix:task_priority:{shard}:{organizer_id}"
|
||||
|
||||
# Make sure counters expire after a while when not used
|
||||
p = rc.pipeline()
|
||||
p.incr(cache_key)
|
||||
p.expire(cache_key, 60)
|
||||
new_counter = p.execute()[0]
|
||||
|
||||
if new_counter >= THRESHOLD_DOWNGRADE_TO_LOW:
|
||||
return settings.PRIORITY_CELERY_LOW
|
||||
elif new_counter >= THRESHOLD_DOWNGRADE_TO_MID:
|
||||
return settings.PRIORITY_CELERY_MID
|
||||
else:
|
||||
return settings.PRIORITY_CELERY_HIGH
|
||||
@@ -22,6 +22,8 @@
|
||||
import logging
|
||||
from string import Formatter
|
||||
|
||||
from django.utils.html import conditional_escape
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@@ -40,14 +42,14 @@ class SafeFormatter(Formatter):
|
||||
Customized version of ``str.format`` that (a) behaves just like ``str.format_map`` and
|
||||
(b) does not allow any unwanted shenanigans like attribute access or format specifiers.
|
||||
"""
|
||||
MODE_IGNORE_RICH = 0
|
||||
MODE_RICH_TO_PLAIN = 1
|
||||
MODE_RICH_TO_HTML = 2
|
||||
|
||||
def __init__(self, context, raise_on_missing=False, mode=MODE_IGNORE_RICH):
|
||||
def __init__(self, context, raise_on_missing=False, mode=MODE_RICH_TO_PLAIN, linkifier=None):
|
||||
self.context = context
|
||||
self.raise_on_missing = raise_on_missing
|
||||
self.mode = mode
|
||||
self.linkifier = linkifier
|
||||
|
||||
def get_field(self, field_name, args, kwargs):
|
||||
return self.get_value(field_name, args, kwargs), field_name
|
||||
@@ -55,22 +57,28 @@ class SafeFormatter(Formatter):
|
||||
def get_value(self, key, args, kwargs):
|
||||
if not self.raise_on_missing and key not in self.context:
|
||||
return '{' + str(key) + '}'
|
||||
r = self.context[key]
|
||||
if isinstance(r, PlainHtmlAlternativeString):
|
||||
if self.mode == self.MODE_IGNORE_RICH:
|
||||
return '{' + str(key) + '}'
|
||||
elif self.mode == self.MODE_RICH_TO_PLAIN:
|
||||
return r.plain
|
||||
return self.context[key]
|
||||
|
||||
def _prepare_value(self, value):
|
||||
if isinstance(value, PlainHtmlAlternativeString):
|
||||
if self.mode == self.MODE_RICH_TO_PLAIN:
|
||||
return value.plain
|
||||
elif self.mode == self.MODE_RICH_TO_HTML:
|
||||
return r.html
|
||||
return r
|
||||
return value.html
|
||||
else:
|
||||
value = str(value)
|
||||
if self.mode == self.MODE_RICH_TO_HTML:
|
||||
value = conditional_escape(value)
|
||||
if self.linkifier:
|
||||
value = self.linkifier.linkify(value)
|
||||
return value
|
||||
|
||||
def format_field(self, value, format_spec):
|
||||
# Ignore format_spec
|
||||
return super().format_field(value, '')
|
||||
return super().format_field(self._prepare_value(value), '')
|
||||
|
||||
|
||||
def format_map(template, context, raise_on_missing=False, mode=SafeFormatter.MODE_IGNORE_RICH):
|
||||
def format_map(template, context, raise_on_missing=False, mode=SafeFormatter.MODE_RICH_TO_PLAIN, linkifier=None):
|
||||
if not isinstance(template, str):
|
||||
template = str(template)
|
||||
return SafeFormatter(context, raise_on_missing, mode=mode).format(template)
|
||||
return SafeFormatter(context, raise_on_missing, mode=mode, linkifier=linkifier).format(template)
|
||||
|
||||
@@ -0,0 +1,210 @@
|
||||
#
|
||||
# This file is part of pretix (Community Edition).
|
||||
#
|
||||
# Copyright (C) 2014-2020 Raphael Michel and contributors
|
||||
# Copyright (C) 2020-today pretix GmbH and contributors
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General
|
||||
# Public License as published by the Free Software Foundation in version 3 of the License.
|
||||
#
|
||||
# ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are
|
||||
# applicable granting you additional permissions and placing additional restrictions on your usage of this software.
|
||||
# Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive
|
||||
# this file, see <https://pretix.eu/about/en/license>.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
||||
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
# details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License along with this program. If not, see
|
||||
# <https://www.gnu.org/licenses/>.
|
||||
#
|
||||
from urllib.parse import quote, urlencode
|
||||
|
||||
import text_unidecode
|
||||
from django.utils.safestring import mark_safe
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
|
||||
|
||||
def dotdecimal(value):
|
||||
return str(value).replace(",", ".")
|
||||
|
||||
|
||||
def commadecimal(value):
|
||||
return str(value).replace(".", ",")
|
||||
|
||||
|
||||
def generate_payment_qr_codes(
|
||||
event,
|
||||
code,
|
||||
amount,
|
||||
bank_details_sepa_bic,
|
||||
bank_details_sepa_name,
|
||||
bank_details_sepa_iban,
|
||||
):
|
||||
out = []
|
||||
for method in [
|
||||
swiss_qrbill,
|
||||
czech_spayd,
|
||||
euro_epc_qr,
|
||||
euro_bezahlcode,
|
||||
]:
|
||||
data = method(
|
||||
event,
|
||||
code,
|
||||
amount,
|
||||
bank_details_sepa_bic,
|
||||
bank_details_sepa_name,
|
||||
bank_details_sepa_iban,
|
||||
)
|
||||
if data:
|
||||
out.append(data)
|
||||
|
||||
return out
|
||||
|
||||
|
||||
def euro_epc_qr(
|
||||
event,
|
||||
code,
|
||||
amount,
|
||||
bank_details_sepa_bic,
|
||||
bank_details_sepa_name,
|
||||
bank_details_sepa_iban,
|
||||
):
|
||||
if event.currency != 'EUR' or not bank_details_sepa_iban:
|
||||
return
|
||||
|
||||
return {
|
||||
"id": "girocode",
|
||||
"label": "EPC-QR",
|
||||
"qr_data": "\n".join(text_unidecode.unidecode(str(d or '')) for d in [
|
||||
"BCD", # Service Tag: ‘BCD’
|
||||
"002", # Version: V2
|
||||
"2", # Character set: ISO 8859-1
|
||||
"SCT", # Identification code: ‘SCT‘
|
||||
bank_details_sepa_bic, # AT-23 BIC of the Beneficiary Bank
|
||||
bank_details_sepa_name, # AT-21 Name of the Beneficiary
|
||||
bank_details_sepa_iban, # AT-20 Account number of the Beneficiary
|
||||
f"{event.currency}{dotdecimal(amount)}", # AT-04 Amount of the Credit Transfer in Euro
|
||||
"", # AT-44 Purpose of the Credit Transfer
|
||||
"", # AT-05 Remittance Information (Structured)
|
||||
code, # AT-05 Remittance Information (Unstructured)
|
||||
"", # Beneficiary to originator information
|
||||
"",
|
||||
]),
|
||||
}
|
||||
|
||||
|
||||
def euro_bezahlcode(
|
||||
event,
|
||||
code,
|
||||
amount,
|
||||
bank_details_sepa_bic,
|
||||
bank_details_sepa_name,
|
||||
bank_details_sepa_iban,
|
||||
):
|
||||
if not bank_details_sepa_iban or bank_details_sepa_iban[:2] != 'DE':
|
||||
return
|
||||
if event.currency != 'EUR':
|
||||
return
|
||||
|
||||
qr_data = "bank://singlepaymentsepa?" + urlencode({
|
||||
"name": str(bank_details_sepa_name),
|
||||
"iban": str(bank_details_sepa_iban),
|
||||
"bic": str(bank_details_sepa_bic),
|
||||
"amount": commadecimal(amount),
|
||||
"reason": str(code),
|
||||
"currency": str(event.currency),
|
||||
}, quote_via=quote)
|
||||
return {
|
||||
"id": "bezahlcode",
|
||||
"label": "BezahlCode",
|
||||
"qr_data": mark_safe(qr_data),
|
||||
"link": qr_data,
|
||||
"link_aria_label": _("Open BezahlCode in your banking app to start the payment process."),
|
||||
}
|
||||
|
||||
|
||||
def swiss_qrbill(
|
||||
event,
|
||||
code,
|
||||
amount,
|
||||
bank_details_sepa_bic,
|
||||
bank_details_sepa_name,
|
||||
bank_details_sepa_iban,
|
||||
):
|
||||
if not bank_details_sepa_iban or not bank_details_sepa_iban[:2] in ('CH', 'LI'):
|
||||
return
|
||||
if event.currency not in ('EUR', 'CHF'):
|
||||
return
|
||||
if not event.settings.invoice_address_from or not event.settings.invoice_address_from_country:
|
||||
return
|
||||
|
||||
data_fields = [
|
||||
'SPC',
|
||||
'0200',
|
||||
'1',
|
||||
bank_details_sepa_iban,
|
||||
'K',
|
||||
bank_details_sepa_name[:70],
|
||||
event.settings.invoice_address_from.replace('\n', ', ')[:70],
|
||||
(event.settings.invoice_address_from_zipcode + ' ' + event.settings.invoice_address_from_city)[:70],
|
||||
'',
|
||||
'',
|
||||
str(event.settings.invoice_address_from_country),
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
str(amount),
|
||||
event.currency,
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'NON',
|
||||
'', # structured reference
|
||||
code,
|
||||
'EPD',
|
||||
]
|
||||
|
||||
data_fields = [text_unidecode.unidecode(d or '') for d in data_fields]
|
||||
qr_data = '\r\n'.join(data_fields)
|
||||
return {
|
||||
"id": "qrbill",
|
||||
"label": "QR-bill",
|
||||
"html_prefix": mark_safe(
|
||||
'<svg class="banktransfer-swiss-cross" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.8 19.8">'
|
||||
'<path stroke="#fff" stroke-width="1.436" d="M.7.7h18.4v18.4H.7z"/><path fill="#fff" d="M8.3 4h3.3v11H8.3z"/>'
|
||||
'<path fill="#fff" d="M4.4 7.9h11v3.3h-11z"/></svg>'
|
||||
),
|
||||
"qr_data": qr_data,
|
||||
"css_class": "banktransfer-swiss-cross-overlay",
|
||||
}
|
||||
|
||||
|
||||
def czech_spayd(
|
||||
event,
|
||||
code,
|
||||
amount,
|
||||
bank_details_sepa_bic,
|
||||
bank_details_sepa_name,
|
||||
bank_details_sepa_iban,
|
||||
):
|
||||
if not bank_details_sepa_iban or not bank_details_sepa_iban[:2] in ('CZ', 'SK'):
|
||||
return
|
||||
if event.currency not in ('EUR', 'CZK'):
|
||||
return
|
||||
|
||||
qr_data = f"SPD*1.0*ACC:{bank_details_sepa_iban}*AM:{dotdecimal(amount)}*CC:{event.currency}*MSG:{code}"
|
||||
return {
|
||||
"id": "spayd",
|
||||
"label": "SPAYD",
|
||||
"qr_data": qr_data,
|
||||
}
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -1118,7 +1118,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1132,7 +1132,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3150,7 +3150,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3165,7 +3165,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3175,7 +3175,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,46 +3324,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3526,7 +3520,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4163,7 +4157,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6890,7 +6884,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6902,8 +6896,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7338,10 +7332,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7659,7 +7653,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8353,7 +8347,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8724,33 +8718,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16141,7 +16135,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20055,7 +20049,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20064,7 +20058,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21018,7 +21012,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27558,7 +27552,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30912,39 +30906,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-04-08 18:00+0000\n"
|
||||
"Last-Translator: Menaouer Chaabi "
|
||||
"<98581961+DerJimno@users.noreply.github.com>\n"
|
||||
@@ -1252,7 +1252,7 @@ msgstr "الاسم الاول"
|
||||
msgid "Family name"
|
||||
msgstr "اسم العائلة"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1266,7 +1266,7 @@ msgstr "اسم العائلة"
|
||||
msgid "Default"
|
||||
msgstr "افتراضي"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "بسيط مع الشعار"
|
||||
|
||||
@@ -3397,7 +3397,7 @@ msgstr "احتفظ بتسجيل دخولي"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "مجموعة بيانات الاعتماد هذه غير معروفة لدى نظامنا."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "لأسباب أمنية ، يرجى الانتظار 5 دقائق قبل المحاولة مرة أخرى."
|
||||
@@ -3414,7 +3414,7 @@ msgstr ""
|
||||
"تسجيل الدخول."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "الرجاء إدخال نفس كلمة المرور مرتين"
|
||||
@@ -3424,7 +3424,7 @@ msgstr "الرجاء إدخال نفس كلمة المرور مرتين"
|
||||
msgid "Repeat password"
|
||||
msgstr "أعد كلمة السر"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3591,42 +3591,30 @@ msgstr "هاتف ذكي مع تطبيق المصادقة"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "رمز جهاز متوافق مع WebAuthn (مثل Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"الرجاء إدخال كلمة المرور الحالية الخاصة بك إذا كنت ترغب في تغيير عنوان "
|
||||
"البريد الإلكتروني الخاص بك أو كلمة المرور."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "كلمة المرور الحالية التي أدخلتها غير صحيحة."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "كلمة السر الحالية الخاصة بك"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "كلمة المرور الجديدة"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "أعد إدخال كلمة المرور الجديدة"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3634,13 +3622,13 @@ msgstr ""
|
||||
"يوجد حساب مرتبط مع عنوان البريد الإلكتروني هذا. الرجاء اختيار بريد إلكتروني "
|
||||
"مختلف."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "عنوان البريد الإلكتروني"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3819,7 +3807,7 @@ msgstr ""
|
||||
"من {from_date}\n"
|
||||
"حتى {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4503,7 +4491,7 @@ msgstr "إذا قمت بإيقاف التشغيل، فلن تتلقى أي إش
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "المستخدم"
|
||||
|
||||
@@ -7659,7 +7647,7 @@ msgstr "تواريخ"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "الإجمالي الصافي"
|
||||
|
||||
@@ -7671,8 +7659,8 @@ msgstr "مبالغ متأخرة"
|
||||
msgid "Purchased products"
|
||||
msgstr "المنتجات التي تم شراءها"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "معاينة تفاصيل الطلب"
|
||||
@@ -8157,10 +8145,10 @@ msgstr "السعر شاملا الإضافات"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "جون دو"
|
||||
|
||||
@@ -8521,7 +8509,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "أسماء الحضور"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "السيد دو"
|
||||
@@ -9415,7 +9403,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "أنت تتلقى هذا البريد الإلكتروني لأنك قدمت طلبا ل {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "resend invite"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -9895,33 +9883,33 @@ msgstr ""
|
||||
"حدث خطأ أثناء محاولة إعادة الأموال إليك. يرجى الاتصال بمنظم الفعالية لمزيد "
|
||||
"من المعلومات."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "عرض تفاصيل التسجيل"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "نموذج لشركة"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "نموذج لتذكرة الدخول"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "يمكن إدراج نص فردي مع سبب هنا."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "تم خصم المبلغ من بطاقتك."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "يرجى تحويل المبلغ إلى هذا الحساب المصرفي: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "سيتم استبدال هذه القيمة استنادا إلى معايير ديناميكية."
|
||||
@@ -18770,7 +18758,7 @@ msgstr "تذاكر"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "الضرائب"
|
||||
|
||||
@@ -23242,7 +23230,7 @@ msgstr "لا يمكن إلا أن يكون اشترى استخدام قسيمة"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong> زائد </strong> %(rate)s%% %(taxname)s"
|
||||
@@ -23251,7 +23239,7 @@ msgstr "<strong> زائد </strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "بما في ذلك %(rate)s%% %(taxname)s"
|
||||
@@ -24335,7 +24323,7 @@ msgstr "UNSAFE"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "المجموع"
|
||||
|
||||
@@ -31922,7 +31910,7 @@ msgid "Upload time"
|
||||
msgstr "وقت التنزيل"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -35928,7 +35916,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "القيمة الحالية"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -35939,19 +35927,19 @@ msgstr[3] "بضعة منتجات %(num)s"
|
||||
msgstr[4] "العديد من المنتجات %(num)s"
|
||||
msgstr[5] "عدد %(num)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "يشمل ضرائب %(tax_sum)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
#| msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"العناصر الموجودة في عربة التسوق الخاصة بك محجوزة لك لمدة %(minutes)s دقائق."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
#, fuzzy
|
||||
#| msgid "The items in your cart are no longer reserved for you."
|
||||
msgid ""
|
||||
@@ -35959,20 +35947,20 @@ msgid ""
|
||||
"complete your order as long as they’re available."
|
||||
msgstr "لم تعد العناصر الموجودة في عربة التسوق الخاصة بك محجوزة لك."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "وصف المنتج"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "فترة الحجز"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -38141,6 +38129,17 @@ msgstr "الوصول إلى الكتابة"
|
||||
msgid "Kosovo"
|
||||
msgstr "كوسوفو"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "الرجاء إدخال كلمة المرور الحالية الخاصة بك إذا كنت ترغب في تغيير عنوان "
|
||||
#~ "البريد الإلكتروني الخاص بك أو كلمة المرور."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are receiving this email because you placed an order for the "
|
||||
#~ "following event:"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2024-12-11 01:00+0000\n"
|
||||
"Last-Translator: Neriman Memmedli <nerim4n@pm.me>\n"
|
||||
"Language-Team: Azerbaijani <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -1120,7 +1120,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1134,7 +1134,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3152,7 +3152,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3167,7 +3167,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3177,7 +3177,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3326,46 +3326,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3528,7 +3522,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4165,7 +4159,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6892,7 +6886,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6904,8 +6898,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7340,10 +7334,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7661,7 +7655,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8355,7 +8349,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8726,33 +8720,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16143,7 +16137,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20057,7 +20051,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20066,7 +20060,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21020,7 +21014,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27562,7 +27556,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30916,39 +30910,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 07:39+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"Language-Team: Catalan <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1276,7 +1276,7 @@ msgstr "Nom"
|
||||
msgid "Family name"
|
||||
msgstr "Cognom"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1290,7 +1290,7 @@ msgstr "Cognom"
|
||||
msgid "Default"
|
||||
msgstr "Predeterminat"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Simple amb logo"
|
||||
|
||||
@@ -3438,7 +3438,7 @@ msgstr "Manté la sessió iniciada"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "El sistema no reconeix aquesta combinació de credencials."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3457,7 +3457,7 @@ msgstr ""
|
||||
"formulari d'inici de sessió."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Si us plau, introduïu la mateixa contrasenya dues vegades"
|
||||
@@ -3467,7 +3467,7 @@ msgstr "Si us plau, introduïu la mateixa contrasenya dues vegades"
|
||||
msgid "Repeat password"
|
||||
msgstr "Repetiu la contrasenya"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3638,42 +3638,30 @@ msgstr "Telèfon intel·ligent amb l'aplicació Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Testimoni de maquinari compatible amb WebAuthn (ex. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Si us plau introduïu la vostra contrasenya actual si voleu canviar la vostra "
|
||||
"adreça de correu o contrasenya."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "La contrasenya actual que heu introduït no és correcta."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "La vostra contrasenya actual"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "La contrasenya nova"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Repetiu la nova contrasenya"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3681,13 +3669,13 @@ msgstr ""
|
||||
"Ja existeix un compte associat a aquesta adreça de correu electrònic. Si us "
|
||||
"plau trieu-ne una altra."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Adreça de correu electrònic"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3868,7 +3856,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"fins {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4566,7 +4554,7 @@ msgstr "Si està desactivat no rebreu cap notificació."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Usuari"
|
||||
|
||||
@@ -7724,7 +7712,7 @@ msgstr "Dates"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -7736,8 +7724,8 @@ msgstr "Quantitat pendent"
|
||||
msgid "Purchased products"
|
||||
msgstr "Productes comprats"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Visualitza els detalls de la comanda"
|
||||
@@ -8245,10 +8233,10 @@ msgstr "Preu incloent complements"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Joan Pons"
|
||||
|
||||
@@ -8617,7 +8605,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Noms dels assistents"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Sr Daixonses"
|
||||
@@ -9475,7 +9463,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Heu rebut aquest correu perquè heu fet una comanda per {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "Sample variation"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -9939,35 +9927,35 @@ msgstr ""
|
||||
"S'ha produït un error en intentar retornar-vos els diners. Si us plau, "
|
||||
"contacteu l'organitzador de l'esdeveniment per a més informació."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Mostrar els detalls del registre"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Associació de mostra"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Exemple de tiquet d'entrada"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Podeu inserir aquí un text amb el motiu."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "S'ha carregat l'import a la vostra targeta."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Si us plau, feu una transferència a aquest compte bancari: "
|
||||
"9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -18928,7 +18916,7 @@ msgstr "Tiquets"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -23245,7 +23233,7 @@ msgstr "Només es pot comprar amb un val"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -23254,7 +23242,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -24270,7 +24258,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -31470,7 +31458,7 @@ msgid "Upload time"
|
||||
msgstr "Baixa el tiquet"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -35291,26 +35279,26 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Valor actual"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Un producte"
|
||||
msgstr[1] "%(num)s productes"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "incl. %(tax_sum)s impostos"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
#| msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"El contingut de la vostra cistella està reservat durant %(minutes)s minuts."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
#, fuzzy
|
||||
#| msgid "The items in your cart are no longer reserved for you."
|
||||
msgid ""
|
||||
@@ -35318,20 +35306,20 @@ msgid ""
|
||||
"complete your order as long as they’re available."
|
||||
msgstr "El contingut de la cistella ja no el teniu reservat."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Descripció del producte"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Període de reserva"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -37474,6 +37462,17 @@ msgstr "Accés d'escriptura"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Si us plau introduïu la vostra contrasenya actual si voleu canviar la "
|
||||
#~ "vostra adreça de correu o contrasenya."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are receiving this email because you placed an order for the "
|
||||
#~ "following event:"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-10-17 16:55+0000\n"
|
||||
"Last-Translator: Petr Čermák <pcermak@live.com>\n"
|
||||
"Language-Team: Czech <https://translate.pretix.eu/projects/pretix/pretix/cs/"
|
||||
@@ -1211,7 +1211,7 @@ msgstr "Jméno"
|
||||
msgid "Family name"
|
||||
msgstr "Příjmení"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1225,7 +1225,7 @@ msgstr "Příjmení"
|
||||
msgid "Default"
|
||||
msgstr "Výchozí"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Jednoduchý s logem"
|
||||
|
||||
@@ -3287,7 +3287,7 @@ msgstr "Zapamatovat si přihlášení"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Zadané přihlašovací údaje nejsou platné."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3305,7 +3305,7 @@ msgstr ""
|
||||
"formulář."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Zadejte stejné heslo dvakrát"
|
||||
@@ -3315,7 +3315,7 @@ msgstr "Zadejte stejné heslo dvakrát"
|
||||
msgid "Repeat password"
|
||||
msgstr "Opakovat heslo"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3484,50 +3484,42 @@ msgstr "Smartphone s aplikací Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Hardwarový token kompatibilní s WebAuthn (např. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Pokud chcete změnit svou e-mailovou adresu nebo heslo, zadejte prosím své "
|
||||
"aktuální heslo."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Heslo, které jste zadali, nebylo správné."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Prosím zvolte heslo, které je jiné, než vaše aktuální heslo."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Stávající heslo"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nové heslo"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Zopakovat heslo"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr "Již existuje účet s touto e-mailovou adresou. Vyberte prosím jiný."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Emailová adresa"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3705,7 +3697,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"do {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4355,7 +4347,7 @@ msgstr "Pokud je vypnuto, nebudete dostávat žádná upozornění."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Uživatel"
|
||||
|
||||
@@ -7366,7 +7358,7 @@ msgstr "Termíny"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Celkem (netto)"
|
||||
|
||||
@@ -7378,8 +7370,8 @@ msgstr "Nevyřízená částka"
|
||||
msgid "Purchased products"
|
||||
msgstr "Objednané produkty"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Zobrazit podrobnosti objednávky"
|
||||
@@ -7865,10 +7857,10 @@ msgstr "Cena včetně dodatků"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Jan Novák"
|
||||
|
||||
@@ -8199,7 +8191,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Jméno účastníka pro pozdrav"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Pan Novák"
|
||||
@@ -8991,7 +8983,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Tento e-mail jste obdrželi, protože jste zadali objednávku na {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Zápis do kalendáře"
|
||||
@@ -9428,33 +9420,33 @@ msgstr ""
|
||||
"Při pokusu o platbu zpět došlo k chybě. Pro další informace se prosím "
|
||||
"obraťte na organizátora akce."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Zobrazení přihlašovacích údajů"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Společnost XZ"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Ukázka vstupného"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Zde lze vložit text s důvodem."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Částka byla stržena z vaší karty."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Peníze prosím převeďte na tento bankovní účet: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -18003,7 +17995,7 @@ msgstr "Vstupenky"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Daně"
|
||||
|
||||
@@ -22252,7 +22244,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -22261,7 +22253,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -23249,7 +23241,7 @@ msgstr "NEZABEZPEČENÉ"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Celkem"
|
||||
|
||||
@@ -30145,7 +30137,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33727,7 +33719,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Současná cena:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -33735,17 +33727,17 @@ msgstr[0] "Jeden produkt"
|
||||
msgstr[1] "%(num)s produkty"
|
||||
msgstr[2] "%(num)s produkty"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "vč. %(tax_sum)s daněmi"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Položky v košíku jsou pro vás rezervovány na %(minutes)s minut."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -33753,20 +33745,20 @@ msgstr ""
|
||||
"Produkty v nákupním košíku již nejsou pro vás rezervovány. Pokud je lístek "
|
||||
"stále dostupný, můžete objednávku dokončit."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Popis akce"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Doba rezervace"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Přehled objednaných produktů."
|
||||
|
||||
@@ -35847,6 +35839,13 @@ msgstr "Přístup k zápisu"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Pokud chcete změnit svou e-mailovou adresu nebo heslo, zadejte prosím své "
|
||||
#~ "aktuální heslo."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2023-11-14 11:00+0000\n"
|
||||
"Last-Translator: Charliecoleg <DM229135@colegsirgar.ac.uk>\n"
|
||||
"Language-Team: Welsh <https://translate.pretix.eu/projects/pretix/pretix/cy/"
|
||||
@@ -1140,7 +1140,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1154,7 +1154,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3172,7 +3172,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3187,7 +3187,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3197,7 +3197,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3346,46 +3346,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3552,7 +3546,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4191,7 +4185,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Defnyddiwr"
|
||||
|
||||
@@ -6923,7 +6917,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6935,8 +6929,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7371,10 +7365,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7692,7 +7686,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8386,7 +8380,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8757,33 +8751,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16192,7 +16186,7 @@ msgstr "Tocynnau"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Trethi"
|
||||
|
||||
@@ -20165,7 +20159,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20174,7 +20168,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21131,7 +21125,7 @@ msgstr "ANNIOGEL"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Cyfan"
|
||||
|
||||
@@ -27712,7 +27706,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -31078,43 +31072,43 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Registration"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Cofrestriad"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Registration"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Cofrestriad"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-08-27 22:00+0000\n"
|
||||
"Last-Translator: Mie Frydensbjerg <mif@aarhus.dk>\n"
|
||||
"Language-Team: Danish <https://translate.pretix.eu/projects/pretix/pretix/da/"
|
||||
@@ -1216,7 +1216,7 @@ msgstr "Fornavn"
|
||||
msgid "Family name"
|
||||
msgstr "Efternavn"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1230,7 +1230,7 @@ msgstr "Efternavn"
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Enkelt med logo"
|
||||
|
||||
@@ -3296,7 +3296,7 @@ msgstr "Husk mit login"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Denne kombination af oplysninger er ikke kendt af vores system."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3314,7 +3314,7 @@ msgstr ""
|
||||
"Du har allerede registreret den e-mailadresse. Brug venligt loginformularen."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Indtast venligst den samme adgangskode to gange"
|
||||
@@ -3324,7 +3324,7 @@ msgstr "Indtast venligst den samme adgangskode to gange"
|
||||
msgid "Repeat password"
|
||||
msgstr "Gentag adgangskode"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Your address"
|
||||
msgid "Your email address"
|
||||
@@ -3499,55 +3499,43 @@ msgstr "Smartphone med Authenticator-app'en"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-kompatibel hardware-token (fx. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Indtast venligst din nuværende adgangskode hvis du vil ændre e-mailadresse "
|
||||
"eller adgangskode."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Den nuværende adgangskode er ikke korrekt."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Vælg venligst en kode, som ikke er den samme som din nuværende."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Din nuværende adgangskode"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Ny adgangskode"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Gentag ny adgangskode"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
"Der findes allerede en konto med denne e-mailadresse. Vælg venligt en anden."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "E-mailadresse"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3727,7 +3715,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"til {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4383,7 +4371,7 @@ msgstr "Fravælg for ikke at modtage notifikationer."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Bruger"
|
||||
|
||||
@@ -7491,7 +7479,7 @@ msgstr "Datoer"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Netto i alt"
|
||||
|
||||
@@ -7503,8 +7491,8 @@ msgstr "Udestående beløb"
|
||||
msgid "Purchased products"
|
||||
msgstr "Købte produkter"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Vis bestillingsdetaljer"
|
||||
@@ -7999,10 +7987,10 @@ msgstr "Pris inkl. add-ons"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Anders And"
|
||||
|
||||
@@ -8329,7 +8317,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Deltagerens navn mht. indledende hilsen"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Peter Hansen"
|
||||
@@ -9110,7 +9098,7 @@ msgstr "Du kan se dine bestillingsdetaljer på følgende url: {orderurl}."
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Du modtager denne e-mail fordi du har afgivet bestlling på {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Kalenderinvitation"
|
||||
@@ -9563,33 +9551,33 @@ msgstr ""
|
||||
"Der opstod en fejl under forsøget på at sende pengene tilbage til dig. "
|
||||
"Kontakt venligst arrangøren for yderligere information."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Vis registreringsdetaljer"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Eksempelorganization"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Eksempel på adgangsbillet"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Her kan du indsætte en individuel tekst med en begrundelse."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Beløbet er blevet trukket på dit kort."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Overfør venligst beløbet til denne bankkonto: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -18019,7 +18007,7 @@ msgstr "Billetter"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -22210,7 +22198,7 @@ msgstr "Kan kun købes med en rabatkode"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22219,7 +22207,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "inkl. %(rate)s%% %(taxname)s"
|
||||
@@ -23236,7 +23224,7 @@ msgstr "USIKKER"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
@@ -30362,7 +30350,7 @@ msgid "Upload time"
|
||||
msgstr "Hent billet"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -34041,25 +34029,25 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Aktuelle problemer"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Produkt"
|
||||
msgstr[1] "%(num)s produkter"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, fuzzy, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "inkl. %(rate)s%% %(taxname)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Posterne i din indkøbskurv er reserveret til dig i %(minutes)s minutter."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -34067,19 +34055,19 @@ msgstr ""
|
||||
"Varerne i din indkøbskurv er ikke længere reserverede til dig. Du kan stadig "
|
||||
"færdiggøre din ordre, så længe der er ledige billetter."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
msgid "Renew reservation"
|
||||
msgstr "Produktbeskrivelse"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Reservationstid"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -36114,6 +36102,17 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Indtast venligst din nuværende adgangskode hvis du vil ændre e-"
|
||||
#~ "mailadresse eller adgangskode."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -4,8 +4,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-12 16:08+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-27 14:28+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"Language-Team: German <https://translate.pretix.eu/projects/pretix/pretix/de/"
|
||||
">\n"
|
||||
@@ -303,11 +303,8 @@ msgid "The program end must not be before the program start."
|
||||
msgstr "Das Programmende darf nicht vor dem Start liegen."
|
||||
|
||||
#: pretix/api/serializers/item.py:247 pretix/base/models/items.py:2315
|
||||
#, fuzzy
|
||||
#| msgid "You can not select a subevent if your event is not an event series."
|
||||
msgid "You cannot use program times on an event series."
|
||||
msgstr ""
|
||||
"Sie können keinen Termin auswählen, da dies keine Veranstaltungsreihe ist."
|
||||
msgstr "Sie können Programmzeiten nicht in Veranstaltungsreihen verwenden."
|
||||
|
||||
#: pretix/api/serializers/item.py:337
|
||||
msgid ""
|
||||
@@ -1167,7 +1164,7 @@ msgstr "Vorname"
|
||||
msgid "Family name"
|
||||
msgstr "Nachname"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1181,7 +1178,7 @@ msgstr "Nachname"
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "einfach mit Logo"
|
||||
|
||||
@@ -3249,7 +3246,7 @@ msgstr "Angemeldet bleiben"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Diese Kombination von Zugangsdaten ist uns nicht bekannt."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3268,7 +3265,7 @@ msgstr ""
|
||||
"verwenden Sie das Login-Formular."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Bitte geben Sie zweimal dasselbe Passwort ein"
|
||||
@@ -3278,7 +3275,7 @@ msgstr "Bitte geben Sie zweimal dasselbe Passwort ein"
|
||||
msgid "Repeat password"
|
||||
msgstr "Passwort wiederholen"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr "Ihre E-Mail-Adresse"
|
||||
|
||||
@@ -3447,38 +3444,30 @@ msgstr "Smartphone mit Authenticator-App"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-kompatibler Hardwaretoken (z.B. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Bitte geben Sie Ihr aktuelles Passwort ein, um Ihre E-Mail-Adresse oder Ihr "
|
||||
"Passwort zu ändern."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Das eingegebene aktuelle Passwort war nicht korrekt."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Bitte wählen Sie ein anderes Passwort als das derzeitige."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Aktuelles Passwort"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Neues Passwort"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Neues Passwort wiederholen"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3486,11 +3475,11 @@ msgstr ""
|
||||
"Diese E-Mail-Adresse ist bereits mit einem anderen Benutzer verknüpft. Bitte "
|
||||
"wählen Sie eine andere."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr "Alte E-Mail-Adresse"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr "Neue E-Mail-Adresse"
|
||||
|
||||
@@ -3665,7 +3654,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"bis {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4344,7 +4333,7 @@ msgstr "Wenn diese Einstellung aus ist, erhalten Sie keine Benachrichtigungen."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
@@ -5413,13 +5402,6 @@ msgstr ""
|
||||
"keinen einzeln gesetzten Preis hat, wird dieser Preis verwendet."
|
||||
|
||||
#: pretix/base/models/items.py:506
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If this option is active, your users can choose the price themselves. The "
|
||||
#| "price configured above is then interpreted as the minimum price a user "
|
||||
#| "has to enter. You could use this e.g. to collect additional donations for "
|
||||
#| "your event. This is currently not supported for products that are bought "
|
||||
#| "as an add-on to other products."
|
||||
msgid ""
|
||||
"If this option is active, your users can choose the price themselves. The "
|
||||
"price configured above is then interpreted as the minimum price a user has "
|
||||
@@ -5429,8 +5411,7 @@ msgstr ""
|
||||
"Wenn diese Option aktiviert ist, kann der Kunde den Preis selbst bearbeiten. "
|
||||
"Der oben eingestellte Preis ist der minimale Preis, der eingegeben werden "
|
||||
"muss. Sie können dies z.B. benutzen, um freiwillige Spenden für Ihre "
|
||||
"Veranstaltung zu sammeln. Dies wird aktuell für Produkte, die als Zusatz zu "
|
||||
"einem anderen Projekt verkauft werden, nicht unterstützt."
|
||||
"Veranstaltung zu sammeln."
|
||||
|
||||
#: pretix/base/models/items.py:511 pretix/base/models/items.py:1175
|
||||
msgid "Suggested price"
|
||||
@@ -7470,7 +7451,7 @@ msgstr "Termine"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Gesamt (netto)"
|
||||
|
||||
@@ -7482,8 +7463,8 @@ msgstr "Offener Betrag"
|
||||
msgid "Purchased products"
|
||||
msgstr "Bestellte Produkte"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Bestelldetails anzeigen"
|
||||
@@ -7981,10 +7962,10 @@ msgstr "Preis inklusive enthaltener und Zusatzprodukte"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Max Mustermann"
|
||||
|
||||
@@ -8312,7 +8293,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Teilnehmername für Anrede"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Herr Mustermann"
|
||||
@@ -9106,7 +9087,7 @@ msgstr ""
|
||||
"Sie erhalten diese E-Mail, weil Sie eine Bestellung für die Veranstaltung "
|
||||
"{event} getätigt haben."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Kalendereintrag"
|
||||
@@ -9571,34 +9552,34 @@ msgstr ""
|
||||
"Es gab einen Fehler bei der automatischen Erstattung der Zahlung. Bitte "
|
||||
"kontaktieren Sie den Veranstalter für weitere Informationen."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Anmeldedetails anzeigen"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Musterfirma"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Beispiel-Ticket"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Hier kann ein Grund für den Nutzer angegeben werden."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Der Betrag wurde von Ihrer Karte abgebucht."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Bitte überweisen Sie den vollen Betrag auf das Bankkonto 9999-9999-9999-"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -14031,6 +14012,7 @@ msgstr "Standard ({value})"
|
||||
#: pretix/control/forms/event.py:380
|
||||
msgid "The currency cannot be changed because orders already exist."
|
||||
msgstr ""
|
||||
"Die Währung kann nicht geändert werden, da bereits Bestellungen existieren."
|
||||
|
||||
#: pretix/control/forms/event.py:391 pretix/control/forms/event.py:404
|
||||
msgid "Domain"
|
||||
@@ -17441,10 +17423,8 @@ msgid "The voucher has been deleted."
|
||||
msgstr "Der Gutschein wurde gelöscht."
|
||||
|
||||
#: pretix/control/logdisplay.py:585
|
||||
#, fuzzy
|
||||
#| msgid "The selected voucher has been deleted."
|
||||
msgid "Cart positions including the voucher have been deleted."
|
||||
msgstr "Der ausgewählte Gutschein wurde gelöscht."
|
||||
msgstr "Warenkorb-Positionen mit dem Gutschein wurden gelöscht."
|
||||
|
||||
#: pretix/control/logdisplay.py:586
|
||||
#, python-brace-format
|
||||
@@ -18330,7 +18310,7 @@ msgstr "Tickets"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Steuern"
|
||||
|
||||
@@ -22808,7 +22788,7 @@ msgstr "Kann nur mit Gutschein erworben werden"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>zzgl.</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22817,7 +22797,7 @@ msgstr "<strong>zzgl.</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "inkl. %(rate)s%% %(taxname)s"
|
||||
@@ -23894,7 +23874,7 @@ msgstr "UNSICHER"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Gesamt"
|
||||
|
||||
@@ -25891,7 +25871,7 @@ msgstr "Neuen Wert hinzufügen"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/organizers/property_edit.html:95
|
||||
msgid "Sort alphabetically"
|
||||
msgstr ""
|
||||
msgstr "Alphabetisch sortieren"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html:14
|
||||
msgid "No media have been created yet."
|
||||
@@ -31245,7 +31225,7 @@ msgid "Upload time"
|
||||
msgstr "Upload-Zeitpunkt"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33431,18 +33411,13 @@ msgstr "Kontonummer"
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple.html:7
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple_messaging_noform.html:13
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple_noform.html:5
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "After you submitted your order, we will redirect you to the payment "
|
||||
#| "service provider to complete your payment. You will then be redirected "
|
||||
#| "back here to get your tickets."
|
||||
msgid ""
|
||||
"After you submitted your order, we will redirect you to the payment service "
|
||||
"provider to complete your payment. You will then be redirected back here."
|
||||
msgstr ""
|
||||
"Nach dem Klick auf „Fortfahren“ werden wir Sie zum Zahlungsdienstleister "
|
||||
"Nach dem Absenden der Bestellung werden wir Sie zum Zahlungsdienstleister "
|
||||
"weiterleiten, um Ihre Zahlungsdaten einzugeben. Sie werden danach wieder "
|
||||
"hierher zurückgeleitet, um Ihre Bestellung zu bestätigen."
|
||||
"hierher zurückgeleitet."
|
||||
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_card.html:9
|
||||
msgid ""
|
||||
@@ -35003,26 +34978,26 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Aktueller Wert:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Ein Produkt"
|
||||
msgstr[1] "%(num)s Produkte"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "inkl. %(tax_sum)s Steuern"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Die Produkte in Ihrem Warenkorb sind noch %(minutes)s Minuten für Sie "
|
||||
"reserviert."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -35031,16 +35006,16 @@ msgstr ""
|
||||
"können die Bestellung trotzdem abschließen, solange die Produkte noch "
|
||||
"verfügbar sind."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "Reservierung verlängern"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Reservierung verlängert"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Übersicht über die bestellten Produkte"
|
||||
|
||||
@@ -37127,6 +37102,13 @@ msgstr "Schreibzugriff"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Bitte geben Sie Ihr aktuelles Passwort ein, um Ihre E-Mail-Adresse oder "
|
||||
#~ "Ihr Passwort zu ändern."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-12 16:08+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-27 14:28+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"Language-Team: German (informal) <https://translate.pretix.eu/projects/"
|
||||
"pretix/pretix/de_Informal/>\n"
|
||||
@@ -305,11 +305,8 @@ msgid "The program end must not be before the program start."
|
||||
msgstr "Das Programmende darf nicht vor dem Start liegen."
|
||||
|
||||
#: pretix/api/serializers/item.py:247 pretix/base/models/items.py:2315
|
||||
#, fuzzy
|
||||
#| msgid "You can not select a subevent if your event is not an event series."
|
||||
msgid "You cannot use program times on an event series."
|
||||
msgstr ""
|
||||
"Du kannst keinen Termin auswählen, da dies keine Veranstaltungsreihe ist."
|
||||
msgstr "Du kannst Programmzeiten nicht in Veranstaltungsreihen verwenden."
|
||||
|
||||
#: pretix/api/serializers/item.py:337
|
||||
msgid ""
|
||||
@@ -1168,7 +1165,7 @@ msgstr "Vorname"
|
||||
msgid "Family name"
|
||||
msgstr "Nachname"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1182,7 +1179,7 @@ msgstr "Nachname"
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Simpel mit Logo"
|
||||
|
||||
@@ -3250,7 +3247,7 @@ msgstr "Angemeldet bleiben"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Diese Kombination von Zugangsdaten ist uns nicht bekannt."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3268,7 +3265,7 @@ msgstr ""
|
||||
"das Login-Formular."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Bitte gib zweimal dasselbe Passwort ein."
|
||||
@@ -3278,7 +3275,7 @@ msgstr "Bitte gib zweimal dasselbe Passwort ein."
|
||||
msgid "Repeat password"
|
||||
msgstr "Passwort wiederholen"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr "Deine E-Mail-Adresse"
|
||||
|
||||
@@ -3447,38 +3444,30 @@ msgstr "Smartphone mit Authenticator-App"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-kompatibler Hardwaretoken (z.B. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Bitte gib dein aktuelles Passwort ein, um deine E-Mail-Adresse oder dein "
|
||||
"Passwort zu ändern."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Das eingegebene aktuelle Passwort war nicht korrekt."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Bitte wählen ein anderes Passwort als das derzeitige."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Aktuelles Passwort"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Neues Passwort"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Neues Passwort wiederholen"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3486,11 +3475,11 @@ msgstr ""
|
||||
"Diese E-Mail-Adresse ist bereits mit einem anderen Benutzer verknüpft. Bitte "
|
||||
"wähle eine andere."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr "Alte E-Mail-Adresse"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr "Neue E-Mail-Adresse"
|
||||
|
||||
@@ -3665,7 +3654,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"bis {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4343,7 +4332,7 @@ msgstr "Wenn diese Einstellung aus ist, erhältst du keine Benachrichtigungen."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Benutzer"
|
||||
|
||||
@@ -5411,13 +5400,6 @@ msgstr ""
|
||||
"keinen einzeln gesetzten Preis hat, wird dieser Preis verwendet."
|
||||
|
||||
#: pretix/base/models/items.py:506
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If this option is active, your users can choose the price themselves. The "
|
||||
#| "price configured above is then interpreted as the minimum price a user "
|
||||
#| "has to enter. You could use this e.g. to collect additional donations for "
|
||||
#| "your event. This is currently not supported for products that are bought "
|
||||
#| "as an add-on to other products."
|
||||
msgid ""
|
||||
"If this option is active, your users can choose the price themselves. The "
|
||||
"price configured above is then interpreted as the minimum price a user has "
|
||||
@@ -5427,8 +5409,7 @@ msgstr ""
|
||||
"Wenn diese Option aktiviert ist, kann der Kunde den Preis selbst bearbeiten. "
|
||||
"Der oben eingestellte Preis ist der minimale Preis, der eingegeben werden "
|
||||
"muss. Du kannst dies z.B. benutzen, um freiwillige Spenden für deine "
|
||||
"Veranstaltung zu sammeln. Dies wird aktuell für Produkte, die als Zusatz zu "
|
||||
"einem anderen Projekt verkauft werden, nicht unterstützt."
|
||||
"Veranstaltung zu sammeln."
|
||||
|
||||
#: pretix/base/models/items.py:511 pretix/base/models/items.py:1175
|
||||
msgid "Suggested price"
|
||||
@@ -7463,7 +7444,7 @@ msgstr "Termine"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Gesamt (netto)"
|
||||
|
||||
@@ -7475,8 +7456,8 @@ msgstr "Offener Betrag"
|
||||
msgid "Purchased products"
|
||||
msgstr "Bestellte Produkte"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Bestelldetails anzeigen"
|
||||
@@ -7973,10 +7954,10 @@ msgstr "Preis inklusive enthaltener und Zusatzprodukte"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Max Mustermann"
|
||||
|
||||
@@ -8304,7 +8285,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Teilnehmername für Anrede"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Herr Mustermann"
|
||||
@@ -9095,7 +9076,7 @@ msgstr ""
|
||||
"Du erhältst diese E-Mail, weil du eine Bestellung für die Veranstaltung "
|
||||
"{event} getätigt hast."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Kalendereintrag"
|
||||
@@ -9558,34 +9539,34 @@ msgstr ""
|
||||
"Es gab einen Fehler bei der automatischen Erstattung der Zahlung. Bitte "
|
||||
"kontaktiere den Veranstalter für weitere Informationen."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Anmeldedetails anzeigen"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Musterfirma"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Beispiel-Ticket"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Hier kann ein Grund für den Nutzer angegeben werden."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Der Betrag wurde von deiner Karte abgebucht."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Bitte überweise den vollen Betrag auf das Bankkonto 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -14007,6 +13988,7 @@ msgstr "Standard ({value})"
|
||||
#: pretix/control/forms/event.py:380
|
||||
msgid "The currency cannot be changed because orders already exist."
|
||||
msgstr ""
|
||||
"Die Währung kann nicht geändert werden, da bereits Bestellungen existieren."
|
||||
|
||||
#: pretix/control/forms/event.py:391 pretix/control/forms/event.py:404
|
||||
msgid "Domain"
|
||||
@@ -17417,10 +17399,8 @@ msgid "The voucher has been deleted."
|
||||
msgstr "Der Gutschein wurde gelöscht."
|
||||
|
||||
#: pretix/control/logdisplay.py:585
|
||||
#, fuzzy
|
||||
#| msgid "The selected voucher has been deleted."
|
||||
msgid "Cart positions including the voucher have been deleted."
|
||||
msgstr "Der ausgewählte Gutschein wurde gelöscht."
|
||||
msgstr "Warenkorb-Positionen mit dem Gutschein wurden gelöscht."
|
||||
|
||||
#: pretix/control/logdisplay.py:586
|
||||
#, python-brace-format
|
||||
@@ -18304,7 +18284,7 @@ msgstr "Tickets"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Steuern"
|
||||
|
||||
@@ -22776,7 +22756,7 @@ msgstr "Kann nur mit Gutschein erworben werden"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>zzgl.</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22785,7 +22765,7 @@ msgstr "<strong>zzgl.</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "inkl. %(rate)s%% %(taxname)s"
|
||||
@@ -23861,7 +23841,7 @@ msgstr "UNSICHER"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Gesamt"
|
||||
|
||||
@@ -25855,7 +25835,7 @@ msgstr "Neuen Wert hinzufügen"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/organizers/property_edit.html:95
|
||||
msgid "Sort alphabetically"
|
||||
msgstr ""
|
||||
msgstr "Alphabetisch sortieren"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html:14
|
||||
msgid "No media have been created yet."
|
||||
@@ -31199,7 +31179,7 @@ msgid "Upload time"
|
||||
msgstr "Upload-Zeitpunkt"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33381,18 +33361,13 @@ msgstr "Kontonummer"
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple.html:7
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple_messaging_noform.html:13
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple_noform.html:5
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "After you submitted your order, we will redirect you to the payment "
|
||||
#| "service provider to complete your payment. You will then be redirected "
|
||||
#| "back here to get your tickets."
|
||||
msgid ""
|
||||
"After you submitted your order, we will redirect you to the payment service "
|
||||
"provider to complete your payment. You will then be redirected back here."
|
||||
msgstr ""
|
||||
"Nach dem Klick auf „Fortfahren“ werden wir dich zum Zahlungsdienstleister "
|
||||
"Nach dem Absenden der Bestellung werden wir dich zum Zahlungsdienstleister "
|
||||
"weiterleiten, um deine Zahlungsdaten einzugeben. Danach wirst du wieder "
|
||||
"hierher zurückgeleitet, um deine Bestellung zu bestätigen."
|
||||
"hierher zurückgeleitet."
|
||||
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_card.html:9
|
||||
msgid ""
|
||||
@@ -34946,26 +34921,26 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Aktueller Wert:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Ein Produkt"
|
||||
msgstr[1] "%(num)s Produkte"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "inkl. %(tax_sum)s Steuern"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Die Produkte in deinem Warenkorb sind noch %(minutes)s Minuten für dich "
|
||||
"reserviert."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -34974,16 +34949,16 @@ msgstr ""
|
||||
"kannst die Bestellung trotzdem abschließen, solange die Produkte noch "
|
||||
"verfügbar sind."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "Reservierung verlängern"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Reservierung verlängert"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Übersicht über die bestellten Produkte"
|
||||
|
||||
@@ -37066,6 +37041,13 @@ msgstr "Schreibzugriff"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Bitte gib dein aktuelles Passwort ein, um deine E-Mail-Adresse oder dein "
|
||||
#~ "Passwort zu ändern."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -1119,7 +1119,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1133,7 +1133,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3151,7 +3151,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3166,7 +3166,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3176,7 +3176,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3325,46 +3325,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3527,7 +3521,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4164,7 +4158,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6891,7 +6885,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6903,8 +6897,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7339,10 +7333,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7660,7 +7654,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8354,7 +8348,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8725,33 +8719,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16142,7 +16136,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20056,7 +20050,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20065,7 +20059,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21019,7 +21013,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27559,7 +27553,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30913,39 +30907,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:58+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-02-14 21:00+0000\n"
|
||||
"Last-Translator: deborahfoell <deborah.foell@om.org>\n"
|
||||
"Language-Team: Greek <https://translate.pretix.eu/projects/pretix/pretix/el/"
|
||||
@@ -1317,7 +1317,7 @@ msgstr "'Ονομα"
|
||||
msgid "Family name"
|
||||
msgstr "Επώνυμο"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1331,7 +1331,7 @@ msgstr "Επώνυμο"
|
||||
msgid "Default"
|
||||
msgstr "Προκαθορισμένο(Default)"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3538,7 +3538,7 @@ msgstr "Κρατήστε με συνδεδεμένο"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Αυτός ο κωδικός κουπονιού δεν είναι γνωστός στη βάση δεδομένων μας."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3555,7 +3555,7 @@ msgstr ""
|
||||
"τη φόρμα σύνδεσης."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Εισαγάγετε τον ίδιο κωδικό πρόσβασης δύο φορές"
|
||||
@@ -3565,7 +3565,7 @@ msgstr "Εισαγάγετε τον ίδιο κωδικό πρόσβασης δ
|
||||
msgid "Repeat password"
|
||||
msgstr "Επαναλάβετε τον κωδικό πρόσβασης"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3734,42 +3734,30 @@ msgstr "Smartphone με την εφαρμογή Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Token hardware συμβατό με U2F (π.χ. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Εισαγάγετε τον τρέχοντα κωδικό πρόσβασης εάν θέλετε να αλλάξετε τη διεύθυνση "
|
||||
"ηλεκτρονικού ταχυδρομείου ή τον κωδικό πρόσβασής σας."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Ο τρέχων κωδικός πρόσβασης που καταχωρίσατε δεν ήταν σωστός."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Το τρέχον συνθηματικό σας"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Νέος κωδικός πρόσβασης"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Επαναλάβετε τον νέο κωδικό πρόσβασης"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3777,13 +3765,13 @@ msgstr ""
|
||||
"Υπάρχει ήδη ένας λογαριασμός που σχετίζεται με αυτήν τη διεύθυνση "
|
||||
"ηλεκτρονικού ταχυδρομείου. Επιλέξτε διαφορετικό."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "ηλεκτρονική διεύθυνση"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3965,7 +3953,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"– {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4720,7 +4708,7 @@ msgstr "Εάν απενεργοποιηθεί, δεν θα λάβετε ειδο
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Χρήστης"
|
||||
|
||||
@@ -7991,7 +7979,7 @@ msgstr "Ημερομηνίες"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Καθαρή συνολική αξία"
|
||||
|
||||
@@ -8005,8 +7993,8 @@ msgstr "Εκκρεμές ποσό"
|
||||
msgid "Purchased products"
|
||||
msgstr "Αλλαγή προϊόντων"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Προβολή λεπτομερειών παραγγελίας"
|
||||
@@ -8547,10 +8535,10 @@ msgstr "Τιμή, συμπεριλαμβανομένων των πρόσθετω
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8936,7 +8924,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Ονόματα συμμετεχόντων"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -9821,7 +9809,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Λαμβάνετε αυτό το email επειδή κάνατε παραγγελία για το {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "resend invite"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -10300,38 +10288,38 @@ msgstr ""
|
||||
"εσάς. Επικοινωνήστε με τον διοργανωτή εκδηλώσεων για περισσότερες "
|
||||
"πληροφορίες."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Προβολή λεπτομερειών εγγραφής"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Δείγμα Corporation"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Δείγμα Εισιτηρίου Εισόδου"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
#, fuzzy
|
||||
#| msgid "An individial text with a reason can be inserted here."
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Μπορεί να εισαχθεί ένα μεμονωμένο κείμενο με έναν λόγο."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
#, fuzzy
|
||||
#| msgid "The products have been successfully added to your cart."
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Τα προϊόντα προστέθηκαν με επιτυχία στο καλάθι σας."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Μεταφέρετε χρήματα σε αυτόν τον τραπεζικό λογαριασμό: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -19668,7 +19656,7 @@ msgstr "Εισιτήρια"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Φόροι"
|
||||
|
||||
@@ -24365,7 +24353,7 @@ msgstr "Μπορεί να αγοραστεί μόνο με ένα κουπόνι
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong> συν </strong>%(rate)s%%%(taxname)s"
|
||||
@@ -24374,7 +24362,7 @@ msgstr "<strong> συν </strong>%(rate)s%%%(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "συμπεριλαμβανομένου του %(rate)s%%%(taxname)s"
|
||||
@@ -25488,7 +25476,7 @@ msgstr "ΕΠΙΣΦΑΛΗΣ"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Σύνολο"
|
||||
|
||||
@@ -33380,7 +33368,7 @@ msgid "Upload time"
|
||||
msgstr "Κατεβάστε το εισιτήριο"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -37458,7 +37446,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Τρέχουσα τιμή"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Add product"
|
||||
msgid "One product"
|
||||
@@ -37466,19 +37454,19 @@ msgid_plural "%(num)s products"
|
||||
msgstr[0] "Προσθήκη προϊόντος"
|
||||
msgstr[1] "Προσθήκη προϊόντος"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, fuzzy, python-format
|
||||
#| msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "συμπεριλαμβανομένου του %(rate)s%%%(taxname)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Τα στοιχεία του καλαθιού σας είναι στη διάθεσή σας για %(minutes)s λεπτά."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -37486,20 +37474,20 @@ msgstr ""
|
||||
"Τα αντικείμενα στο καλάθι σας δεν είναι πλέον διαθέσιμα. Μπορείτε να "
|
||||
"επαναλάβετε την διαδικασία εφόσον είναι διαθέσιμα."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Περιγραφή προϊόντος"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Περίοδος κράτησης"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -39831,6 +39819,17 @@ msgstr "Πρόσβαση για εγγραφή"
|
||||
msgid "Kosovo"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Εισαγάγετε τον τρέχοντα κωδικό πρόσβασης εάν θέλετε να αλλάξετε τη "
|
||||
#~ "διεύθυνση ηλεκτρονικού ταχυδρομείου ή τον κωδικό πρόσβασής σας."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are receiving this email because you placed an order for the "
|
||||
#~ "following event:"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -1118,7 +1118,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1132,7 +1132,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3150,7 +3150,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3165,7 +3165,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3175,7 +3175,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,46 +3324,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3526,7 +3520,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4163,7 +4157,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6890,7 +6884,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6902,8 +6896,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7338,10 +7332,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7659,7 +7653,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8353,7 +8347,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8724,33 +8718,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16141,7 +16135,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20055,7 +20049,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20064,7 +20058,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21018,7 +21012,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27558,7 +27552,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30912,39 +30906,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 18:00+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-22 23:00+0000\n"
|
||||
"Last-Translator: CVZ-es <damien.bremont@casadevelazquez.org>\n"
|
||||
"Language-Team: Spanish <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
"es/>\n"
|
||||
@@ -305,11 +305,9 @@ msgid "The program end must not be before the program start."
|
||||
msgstr "El final del programa no debe ser anterior al inicio del programa."
|
||||
|
||||
#: pretix/api/serializers/item.py:247 pretix/base/models/items.py:2315
|
||||
#, fuzzy
|
||||
#| msgid "You can not select a subevent if your event is not an event series."
|
||||
msgid "You cannot use program times on an event series."
|
||||
msgstr ""
|
||||
"No puede seleccionar un subevento si su evento no es una serie de eventos."
|
||||
"No se pueden utilizar los horarios de los programas en una serie de eventos."
|
||||
|
||||
#: pretix/api/serializers/item.py:337
|
||||
msgid ""
|
||||
@@ -1170,7 +1168,7 @@ msgstr "Nombre"
|
||||
msgid "Family name"
|
||||
msgstr "Apellido"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1184,7 +1182,7 @@ msgstr "Apellido"
|
||||
msgid "Default"
|
||||
msgstr "Por defecto"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Simple con logo"
|
||||
|
||||
@@ -3258,7 +3256,7 @@ msgstr "Mantenerme logueado"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Nuestro sistema no reconoce esta combinación de credenciales."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3276,7 +3274,7 @@ msgstr ""
|
||||
"de autenticación."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Por favor, introduzca la misma contraseña dos veces"
|
||||
@@ -3286,7 +3284,7 @@ msgstr "Por favor, introduzca la misma contraseña dos veces"
|
||||
msgid "Repeat password"
|
||||
msgstr "Repetir contraseña"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr "Dirección de correo electrónico"
|
||||
|
||||
@@ -3457,38 +3455,30 @@ msgstr "Celular con aplicación de autenticación"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Hardware compatible con token WebAuthn (p. ej. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Por favor ingrese su contraseña actual si desea cambiar su correo "
|
||||
"electrónico o contraseña."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "La contraseña actual que ingresó no es correcta."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Elige una contraseña diferente a la actual."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Su contraseña actual"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nueva contraseña"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Repetir la nueva contraseña"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3496,11 +3486,11 @@ msgstr ""
|
||||
"Ya existe una cuenta asociada a este correo electrónico. Por favor, escoja "
|
||||
"otro."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr "Dirección de correo electrónico antigua"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr "Nuevo correo electrónico"
|
||||
|
||||
@@ -3678,7 +3668,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
" hasta {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4353,7 +4343,7 @@ msgstr "Si apagado, no recibirás ninguna notificación."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Usuario"
|
||||
|
||||
@@ -5421,13 +5411,6 @@ msgstr ""
|
||||
"especial o si no tiene variaciones, se utilizará este precio."
|
||||
|
||||
#: pretix/base/models/items.py:506
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If this option is active, your users can choose the price themselves. The "
|
||||
#| "price configured above is then interpreted as the minimum price a user "
|
||||
#| "has to enter. You could use this e.g. to collect additional donations for "
|
||||
#| "your event. This is currently not supported for products that are bought "
|
||||
#| "as an add-on to other products."
|
||||
msgid ""
|
||||
"If this option is active, your users can choose the price themselves. The "
|
||||
"price configured above is then interpreted as the minimum price a user has "
|
||||
@@ -5437,9 +5420,7 @@ msgstr ""
|
||||
"Si esta opción está activa, sus usuarios pueden elegir el precio ellos "
|
||||
"mismos. El precio configurado anteriormente se interpreta como el precio "
|
||||
"mínimo que un usuario debe introducir. Usted puede utilizar esto, por "
|
||||
"ejemplo, para recoger donaciones adicionales para su evento. Actualmente, "
|
||||
"esto no es compatible con los productos que se compran como complemento de "
|
||||
"otros productos."
|
||||
"ejemplo, para recoger donaciones adicionales para su evento."
|
||||
|
||||
#: pretix/base/models/items.py:511 pretix/base/models/items.py:1175
|
||||
msgid "Suggested price"
|
||||
@@ -7478,7 +7459,7 @@ msgstr "Fechas"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Total neto"
|
||||
|
||||
@@ -7490,8 +7471,8 @@ msgstr "Importe pendiente"
|
||||
msgid "Purchased products"
|
||||
msgstr "Productos comprados"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Ver detalles del pedido"
|
||||
@@ -7981,10 +7962,10 @@ msgstr "Precio incluyendo complementos y productos incluidos en el paquete"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Juan Pérez"
|
||||
|
||||
@@ -8312,7 +8293,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Nombre del asistente para el saludo"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Señor Doe"
|
||||
@@ -9105,7 +9086,7 @@ msgstr ""
|
||||
"Usted está recibiendo este correo electrónico porque realizó un pedido para "
|
||||
"{event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Invitación al calendario"
|
||||
@@ -9561,34 +9542,34 @@ msgstr ""
|
||||
"Sucedió un error al tratar de devolverle el dinero. Por favor contacte al "
|
||||
"organizador del evento por información adicional."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Ver detalles del registro"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Corporación de Ejemplo"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Ejemplo de entrada"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Un texto individual con una razón puede ser insertado aquí."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Esta cantidad se ha cargado a tu tarjeta."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Por favor, transfiera dinero a esta cuenta bancaria: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Este valor se reemplazará en base a parámetros dinámicos."
|
||||
@@ -14012,7 +13993,7 @@ msgstr "Valor por ({value})"
|
||||
|
||||
#: pretix/control/forms/event.py:380
|
||||
msgid "The currency cannot be changed because orders already exist."
|
||||
msgstr ""
|
||||
msgstr "No se puede cambiar la moneda porque ya existen pedidos."
|
||||
|
||||
#: pretix/control/forms/event.py:391 pretix/control/forms/event.py:404
|
||||
msgid "Domain"
|
||||
@@ -17426,10 +17407,8 @@ msgid "The voucher has been deleted."
|
||||
msgstr "El vale de compra fue eliminado."
|
||||
|
||||
#: pretix/control/logdisplay.py:585
|
||||
#, fuzzy
|
||||
#| msgid "The selected voucher has been deleted."
|
||||
msgid "Cart positions including the voucher have been deleted."
|
||||
msgstr "Se ha borrado el vale de compra seleccionado."
|
||||
msgstr "Las posiciones del carrito, incluido el vale, se han eliminado."
|
||||
|
||||
#: pretix/control/logdisplay.py:586
|
||||
#, python-brace-format
|
||||
@@ -18320,7 +18299,7 @@ msgstr "Entradas"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "gravámenes"
|
||||
|
||||
@@ -22812,7 +22791,7 @@ msgstr "Sólo se puede comprar utilizando un vale de compra"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22821,7 +22800,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "incl. %(taxname)s %(rate)s%%"
|
||||
@@ -23894,7 +23873,7 @@ msgstr "INSEGURO"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
@@ -25884,7 +25863,7 @@ msgstr "Añade un nuevo valor"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/organizers/property_edit.html:95
|
||||
msgid "Sort alphabetically"
|
||||
msgstr ""
|
||||
msgstr "Ordenar alfabéticamente"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html:14
|
||||
msgid "No media have been created yet."
|
||||
@@ -31253,7 +31232,7 @@ msgid "Upload time"
|
||||
msgstr "Tiempo de carga"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33440,18 +33419,13 @@ msgstr "Número de cuenta"
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple.html:7
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple_messaging_noform.html:13
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple_noform.html:5
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "After you submitted your order, we will redirect you to the payment "
|
||||
#| "service provider to complete your payment. You will then be redirected "
|
||||
#| "back here to get your tickets."
|
||||
msgid ""
|
||||
"After you submitted your order, we will redirect you to the payment service "
|
||||
"provider to complete your payment. You will then be redirected back here."
|
||||
msgstr ""
|
||||
"Después de enviar su pedido, le redirigiremos al proveedor de servicios de "
|
||||
"pago para que complete el pago. A continuación, se le redirigirá de nuevo "
|
||||
"aquí para obtener sus entradas."
|
||||
"pago para que complete el pago. A continuación, se le redirigirá en este "
|
||||
"sitio web."
|
||||
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_card.html:9
|
||||
msgid ""
|
||||
@@ -35004,25 +34978,25 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Valor actual:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Un producto"
|
||||
msgstr[1] "%(num)s productos"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "incl. %(tax_sum)s impuestos"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Los artículos de su carrito están reservados durante %(minutes)ss minutos."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -35030,16 +35004,16 @@ msgstr ""
|
||||
"Los elementos en su carrito de compras ya no se encuentran reservados. "
|
||||
"Puedes seguir añadiendo más productos mientras estén disponibles."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "Renovar reserva"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Reserva renovada"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Resumen de los productos pedidos."
|
||||
|
||||
@@ -37093,6 +37067,13 @@ msgstr "Acceso de escritura"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Por favor ingrese su contraseña actual si desea cambiar su correo "
|
||||
#~ "electrónico o contraseña."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-07-18 01:00+0000\n"
|
||||
"Last-Translator: Zona Vip <contacto@zonavip.mx>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.pretix.eu/projects/"
|
||||
@@ -1209,7 +1209,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1223,7 +1223,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr "Por defecto"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Sencillo con logo"
|
||||
|
||||
@@ -3275,7 +3275,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3290,7 +3290,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3300,7 +3300,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3453,48 +3453,42 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Dirección de correo electrónico"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3663,7 +3657,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4303,7 +4297,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -7038,7 +7032,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -7050,8 +7044,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7486,10 +7480,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7809,7 +7803,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8503,7 +8497,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8874,33 +8868,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16299,7 +16293,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20229,7 +20223,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20238,7 +20232,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21192,7 +21186,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27745,7 +27739,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -31100,39 +31094,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2024-09-16 13:00+0000\n"
|
||||
"Last-Translator: Svyatoslav <slava@digitalarthouse.eu>\n"
|
||||
"Language-Team: Estonian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1120,7 +1120,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1134,7 +1134,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3152,7 +3152,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3167,7 +3167,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3177,7 +3177,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3326,46 +3326,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3528,7 +3522,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4165,7 +4159,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6892,7 +6886,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6904,8 +6898,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7340,10 +7334,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7661,7 +7655,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8355,7 +8349,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8726,33 +8720,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16143,7 +16137,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20057,7 +20051,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20066,7 +20060,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21020,7 +21014,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27560,7 +27554,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30914,39 +30908,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2024-09-23 18:00+0000\n"
|
||||
"Last-Translator: Albizuri <oier@puntu.eus>\n"
|
||||
"Language-Team: Basque <https://translate.pretix.eu/projects/pretix/pretix/eu/"
|
||||
@@ -1222,7 +1222,7 @@ msgstr "Izena"
|
||||
msgid "Family name"
|
||||
msgstr "Abizena"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1236,7 +1236,7 @@ msgstr "Abizena"
|
||||
msgid "Default"
|
||||
msgstr "Lehenespenez"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Soila logotipoarekin"
|
||||
|
||||
@@ -3308,7 +3308,7 @@ msgstr "Saioa hasita mantendu"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Gure sistemak ez du ezagutzen kredentzialen konbinazio hori."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3326,7 +3326,7 @@ msgstr ""
|
||||
"Helbide elektroniko horrekin erregistratu bazara, erabili sarbide-inprimakia."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Sartu pasahitz bera bi aldiz"
|
||||
@@ -3336,7 +3336,7 @@ msgstr "Sartu pasahitz bera bi aldiz"
|
||||
msgid "Repeat password"
|
||||
msgstr "Pasahitza errepikatu"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3512,42 +3512,30 @@ msgstr "Smartphonea Authenticator aplikazioarekin"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-ekin bateragarria den hardware-tokena (adibidez, Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Idatzi egungo pasahitza zure helbide elektronikoa edo pasahitza aldatu nahi "
|
||||
"baduzu."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Sartu duzun pasahitza ez da zuzena."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Mesedez, hautatu beste pasahitz bat."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Egungo zure pasahitza"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Pasahitz berria"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Pasahitz berria errepikatu"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3555,13 +3543,13 @@ msgstr ""
|
||||
"Badago helbide elektroniko horri lotutako kontu bat. Mesedez, aukeratu beste "
|
||||
"bat."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Helbide elektronikoa"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3742,7 +3730,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
" {to_date} -arte"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4395,7 +4383,7 @@ msgstr "Desaktibatuta badago, ez duzu jakinarazpenik jasoko."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Erabiltzailea"
|
||||
|
||||
@@ -7500,7 +7488,7 @@ msgstr "Datak"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Garbia guztira"
|
||||
|
||||
@@ -7512,8 +7500,8 @@ msgstr "Ordaindu gabeko zenbatekoa"
|
||||
msgid "Purchased products"
|
||||
msgstr "Erositako produktuak"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Eskaeraren xehetasunak ikusi"
|
||||
@@ -8009,10 +7997,10 @@ msgstr "Osagarriak barne dituen prezioa"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8339,7 +8327,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Agurrerako bertaratuko den pertsonaren izena"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Mr Doe"
|
||||
@@ -9125,7 +9113,7 @@ msgstr ""
|
||||
"Mezu elektroniko hau jasotzen ari zara eskaera bat egin duzulako {event}"
|
||||
"(e)rako."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Egutegirako gonbidapena"
|
||||
@@ -9575,33 +9563,33 @@ msgstr ""
|
||||
"Errore bat gertatu da dirua itzultzen saiatzean. Informazio gehiago nahi "
|
||||
"izanez gero, jarri harremanetan antolatzailearekin."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Izen-ematearen xehetasunak ikusi"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Erakundearen adibidea"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Onarpen sarreraren adibidea"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Hemen, zergati bat duen bakarkako testua txerta daiteke."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Zenbatekoa zure txartelean kargatu da."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Mesedez, transferitu dirua banku-kontu honetara 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -17955,7 +17943,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -21937,7 +21925,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21946,7 +21934,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -22919,7 +22907,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Guztira"
|
||||
|
||||
@@ -29686,7 +29674,7 @@ msgid "Upload time"
|
||||
msgstr "Karga-ordua"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33468,24 +33456,24 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Egungo balioa:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Produktu bat"
|
||||
msgstr[1] "%(num)s produktuak"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "%(tax_sum)s zergak barne"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Zure saskiko produktuak %(minutes)s minututarako erreserbatuta daude."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -33493,20 +33481,20 @@ msgstr ""
|
||||
"Zure saskiko produktuak ez daude zuretzat erreserbatuta. Oraindik ere zure "
|
||||
"eskaera bete dezakezu, baldin eta eskuragarri badaude."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Ekitaldiaren deskribapena"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Erreserba-aldia"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Eskatutako produktuen berrikuspena."
|
||||
|
||||
@@ -35599,6 +35587,17 @@ msgstr "Idatzi sarbidea"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Idatzi egungo pasahitza zure helbide elektronikoa edo pasahitza aldatu "
|
||||
#~ "nahi baduzu."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-10-04 10:10+0000\n"
|
||||
"Last-Translator: Sebastian Bożek <sebastian@log-mar.pl>\n"
|
||||
"Language-Team: Finnish <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1224,7 +1224,7 @@ msgstr "Etunimi"
|
||||
msgid "Family name"
|
||||
msgstr "Sukunimi"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1238,7 +1238,7 @@ msgstr "Sukunimi"
|
||||
msgid "Default"
|
||||
msgstr "Oletusarvo"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Yksinkertainen logolla"
|
||||
|
||||
@@ -3306,7 +3306,7 @@ msgstr "Pysy kirjautuneena"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Tämä käyttäjätunnuksen ja salasanan yhdistelmä ei ole tiedossamme."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Tietoturvasyistä, odota 5 minuuttia ennen kuin yrität uudelleen."
|
||||
@@ -3323,7 +3323,7 @@ msgstr ""
|
||||
"kirjautumislomaketta."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Syötä kaksi kertaa sama salasana"
|
||||
@@ -3333,7 +3333,7 @@ msgstr "Syötä kaksi kertaa sama salasana"
|
||||
msgid "Repeat password"
|
||||
msgstr "Toista salasana"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3503,51 +3503,43 @@ msgstr "Älypuhelin, jossa on tunnistautumissovellus"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-yhteensopiva laitteistotunniste (esim. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Syötä nykyinen salasanasi, jos haluat muuttaa sähköpostiosoitteesi tai "
|
||||
"salasanaasi."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Syöttämäsi nykyinen salasana ei ollut oikein."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Valitse salasana, joka on eri kuin nykyinen salasanasi."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Nykyinen salasanasi"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Uusi salasana"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Toista uusi salasanasi"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
"Tällä sähköpostiosoitteella on jo tili. Valitse toinen sähköpostiosoite."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Sähköpostiosoite"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3728,7 +3720,7 @@ msgstr ""
|
||||
"{from_date} \n"
|
||||
"asti {to_date} saakka"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4381,7 +4373,7 @@ msgstr "Jos tämä on pois päältä, et saa mitään ilmoituksia."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Käyttäjä"
|
||||
|
||||
@@ -7480,7 +7472,7 @@ msgstr "Päivämäärät"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Netto summa"
|
||||
|
||||
@@ -7492,8 +7484,8 @@ msgstr "Puuttuva summa"
|
||||
msgid "Purchased products"
|
||||
msgstr "Ostetut tuotteet"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Näytä tilauksen yksityiskohdat"
|
||||
@@ -7978,10 +7970,10 @@ msgstr "Hinta sisältäen lisäosat"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Matti Meikäläinen"
|
||||
|
||||
@@ -8308,7 +8300,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Osallistujan nimi tervehdyksessä"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "hra Meikäläinen"
|
||||
@@ -9083,7 +9075,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Saat tämän sähköpostiviestin, koska olet tehnyt {event}tilauksen."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Kalenterikutsu"
|
||||
@@ -9520,33 +9512,33 @@ msgstr ""
|
||||
"Kun yritimme lähettää rahat takaisin sinulle, tapahtui virhe. Ota yhteyttä "
|
||||
"tapahtuman järjestäjään saadaksesi lisätietoja."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Näytä ilmoittautumistiedot"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Esimerkkiyritys"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Esimerkkipääsylippu"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Tähän voidaan lisätä yksittäinen teksti perusteluineen."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Summa on veloitettu kortiltasi."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Ole hyvä ja siirrä raha tälle tilille: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Tämä arvo korvataan dynaamisten parametrien perusteella."
|
||||
@@ -17831,7 +17823,7 @@ msgstr "Liput"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Verot"
|
||||
|
||||
@@ -21828,7 +21820,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21837,7 +21829,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -22808,7 +22800,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Summa"
|
||||
|
||||
@@ -29547,7 +29539,7 @@ msgid "Upload time"
|
||||
msgstr "Tiedoston lähetysaika"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33271,25 +33263,25 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Nykyinen arvo:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Yksi tuote"
|
||||
msgstr[1] "%(num)s tuotetta"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "sis. %(tax_sum)s veroja"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Ostoskorissasi olevat tuotteet on varattu sinulle %(minutes)s minuutiksi."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -33297,20 +33289,20 @@ msgstr ""
|
||||
"Ostoskorissasi olevat tuotteet eivät ole enää varattu sinulle. Voit silti "
|
||||
"suorittaa tilauksen loppuun niin kauan kuin tuotteita on saatavilla."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Tapahtuman kuvaus"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Varausaika"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Yleiskatsaus tilaamistasi tuotteista."
|
||||
|
||||
@@ -35372,6 +35364,13 @@ msgstr "Kirjoita käyttöoikeudet"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Syötä nykyinen salasanasi, jos haluat muuttaa sähköpostiosoitteesi tai "
|
||||
#~ "salasanaasi."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-02-13 22:00+0000\n"
|
||||
"Last-Translator: Andrias Magnussen <andrias.magnussen@om.org>\n"
|
||||
"Language-Team: Faroese <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1167,7 +1167,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1181,7 +1181,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3199,7 +3199,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3214,7 +3214,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3224,7 +3224,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3373,46 +3373,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3575,7 +3569,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4212,7 +4206,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6941,7 +6935,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6953,8 +6947,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7389,10 +7383,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7712,7 +7706,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8406,7 +8400,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8777,33 +8771,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16200,7 +16194,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20120,7 +20114,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20129,7 +20123,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21083,7 +21077,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27633,7 +27627,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30989,39 +30983,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-16 18:00+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-22 23:00+0000\n"
|
||||
"Last-Translator: CVZ-es <damien.bremont@casadevelazquez.org>\n"
|
||||
"Language-Team: French <https://translate.pretix.eu/projects/pretix/pretix/fr/"
|
||||
">\n"
|
||||
@@ -302,12 +302,10 @@ msgid "The program end must not be before the program start."
|
||||
msgstr "La fin du programme ne doit pas être antérieure au début du programme."
|
||||
|
||||
#: pretix/api/serializers/item.py:247 pretix/base/models/items.py:2315
|
||||
#, fuzzy
|
||||
#| msgid "You can not select a subevent if your event is not an event series."
|
||||
msgid "You cannot use program times on an event series."
|
||||
msgstr ""
|
||||
"Vous ne pouvez pas sélectionner un sous-événement si votre événement n'est "
|
||||
"pas une série d'événements."
|
||||
"Vous ne pouvez pas utiliser les horaires des programmes pour une série "
|
||||
"d'événements."
|
||||
|
||||
#: pretix/api/serializers/item.py:337
|
||||
msgid ""
|
||||
@@ -1170,7 +1168,7 @@ msgstr "Prénom"
|
||||
msgid "Family name"
|
||||
msgstr "Nom de famille"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1184,7 +1182,7 @@ msgstr "Nom de famille"
|
||||
msgid "Default"
|
||||
msgstr "Par défaut"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "simple avec logo"
|
||||
|
||||
@@ -3262,7 +3260,7 @@ msgstr "Rester connecté"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Cette combinaison d'identifiants n'est pas connue dans notre système."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3281,7 +3279,7 @@ msgstr ""
|
||||
"formulaire de connexion."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Veuillez entrer le même mot de passe une deuxième fois"
|
||||
@@ -3291,7 +3289,7 @@ msgstr "Veuillez entrer le même mot de passe une deuxième fois"
|
||||
msgid "Repeat password"
|
||||
msgstr "Répéter le mot de passe"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr "Votre adresse e-mail"
|
||||
|
||||
@@ -3463,39 +3461,31 @@ msgstr "Smartphone avec l'application Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Token matériel compatible WebAuthn (par ex. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Veuillez saisir votre mot de passe actuel si vous souhaitez modifier votre "
|
||||
"adresse électronique ou votre mot de passe."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Le mot de passe que vous avez entré n'était pas correct."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
"Merci de choisir un mot de passe différent de votre mot de passe actuel."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Votre mot de passe actuel"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nouveau mot de passe"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Répéter le nouveau mot de passe"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3503,11 +3493,11 @@ msgstr ""
|
||||
"Il existe déjà un compte associé à cette adresse e-mail. Veuillez en choisir "
|
||||
"une autre."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr "Ancienne adresse e-mail"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr "Nouvelle adresse e-mail"
|
||||
|
||||
@@ -3682,7 +3672,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"au {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4358,7 +4348,7 @@ msgstr "Si elle est désactivée, vous n'obtiendrez aucune notification."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Utilisateur"
|
||||
|
||||
@@ -5440,13 +5430,6 @@ msgstr ""
|
||||
"spécial ou si vous n'en avez pas, ce prix sera utilisé."
|
||||
|
||||
#: pretix/base/models/items.py:506
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "If this option is active, your users can choose the price themselves. The "
|
||||
#| "price configured above is then interpreted as the minimum price a user "
|
||||
#| "has to enter. You could use this e.g. to collect additional donations for "
|
||||
#| "your event. This is currently not supported for products that are bought "
|
||||
#| "as an add-on to other products."
|
||||
msgid ""
|
||||
"If this option is active, your users can choose the price themselves. The "
|
||||
"price configured above is then interpreted as the minimum price a user has "
|
||||
@@ -5456,9 +5439,7 @@ msgstr ""
|
||||
"Si cette option est active, vos utilisateurs peuvent choisir le prix eux-"
|
||||
"mêmes. Le prix configuré ci-dessus est alors interprété comme le prix "
|
||||
"minimum qu'un utilisateur doit saisir. Vous pouvez l'utiliser par exemple "
|
||||
"pour collecter des dons supplémentaires pour votre événement. Ceci n'est "
|
||||
"actuellement pas pris en charge pour les produits qui sont achetés comme un "
|
||||
"Add-On à d'autres produits."
|
||||
"pour collecter des dons supplémentaires pour votre événement."
|
||||
|
||||
#: pretix/base/models/items.py:511 pretix/base/models/items.py:1175
|
||||
msgid "Suggested price"
|
||||
@@ -7518,7 +7499,7 @@ msgstr "Dates"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Total net"
|
||||
|
||||
@@ -7530,8 +7511,8 @@ msgstr "Montant en attente"
|
||||
msgid "Purchased products"
|
||||
msgstr "Produits achetés"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Voir les détails de la commande"
|
||||
@@ -8031,10 +8012,10 @@ msgstr "Prix incluant les suppléments et les produits groupés"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Jacques Martin"
|
||||
|
||||
@@ -8362,7 +8343,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Nom du participant pour la formule de salutation"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "M. Doe"
|
||||
@@ -9166,7 +9147,7 @@ msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
"Vous recevez cet e-mail parce que vous avez passé une commande pour {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Invitation au calendrier"
|
||||
@@ -9626,34 +9607,34 @@ msgstr ""
|
||||
"Une erreur s’est produite en essayant de vous renvoyer l’argent. Veuillez "
|
||||
"contacter l’organisateur de l’événement pour plus d’informations."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Voir les détails de l’inscription"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Exemple de société"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Exemple de billet d'entrée"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Un texte avec un motif peut être inséré ici."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Le montant dû a été débité de votre carte."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Veuillez virer de l'argent sur ce compte bancaire : 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Cette valeur sera remplacée en fonction des paramètres dynamiques."
|
||||
@@ -14146,7 +14127,7 @@ msgstr "Valeur par défaut ({value})"
|
||||
|
||||
#: pretix/control/forms/event.py:380
|
||||
msgid "The currency cannot be changed because orders already exist."
|
||||
msgstr ""
|
||||
msgstr "La devise ne peut pas être modifiée car il existe déjà des commandes."
|
||||
|
||||
#: pretix/control/forms/event.py:391 pretix/control/forms/event.py:404
|
||||
msgid "Domain"
|
||||
@@ -17568,10 +17549,8 @@ msgid "The voucher has been deleted."
|
||||
msgstr "Le bon a été supprimé."
|
||||
|
||||
#: pretix/control/logdisplay.py:585
|
||||
#, fuzzy
|
||||
#| msgid "The selected voucher has been deleted."
|
||||
msgid "Cart positions including the voucher have been deleted."
|
||||
msgstr "Le bon sélectionné a été supprimé."
|
||||
msgstr "Les positions du panier, y compris le bon d'achat, ont été supprimées."
|
||||
|
||||
#: pretix/control/logdisplay.py:586
|
||||
#, python-brace-format
|
||||
@@ -18460,7 +18439,7 @@ msgstr "Billets"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Taxes"
|
||||
|
||||
@@ -22978,7 +22957,7 @@ msgstr "Ne peut être acheté qu’à l’aide d’un bon"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22987,7 +22966,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "incl. %(rate)s%% %(taxname)s"
|
||||
@@ -24068,7 +24047,7 @@ msgstr "PEU SÛR"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
@@ -26076,7 +26055,7 @@ msgstr "Ajouter une nouvelle valeur"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/organizers/property_edit.html:95
|
||||
msgid "Sort alphabetically"
|
||||
msgstr ""
|
||||
msgstr "Trier par ordre alphabétique"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/organizers/reusable_media.html:14
|
||||
msgid "No media have been created yet."
|
||||
@@ -31500,7 +31479,7 @@ msgid "Upload time"
|
||||
msgstr "Temps de chargement"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33704,18 +33683,13 @@ msgstr "Numéro de compte"
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple.html:7
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple_messaging_noform.html:13
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_simple_noform.html:5
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "After you submitted your order, we will redirect you to the payment "
|
||||
#| "service provider to complete your payment. You will then be redirected "
|
||||
#| "back here to get your tickets."
|
||||
msgid ""
|
||||
"After you submitted your order, we will redirect you to the payment service "
|
||||
"provider to complete your payment. You will then be redirected back here."
|
||||
msgstr ""
|
||||
"Après que vous ayez soumis votre commande, nous vous redirigerons vers le "
|
||||
"prestataire de services de paiement pour effectuer votre paiement. Vous "
|
||||
"serez ensuite redirigé ici pour récupérer vos billets."
|
||||
"serez ensuite redirigé sur ce site."
|
||||
|
||||
#: pretix/plugins/stripe/templates/pretixplugins/stripe/checkout_payment_form_card.html:9
|
||||
msgid ""
|
||||
@@ -35284,25 +35258,25 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Valeur actuelle :"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Un produit"
|
||||
msgstr[1] "%(num)s produits"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "incl. %(tax_sum)s taxes"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Les articles de votre panier vous sont réservés pour %(minutes)s minutes."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -35310,16 +35284,16 @@ msgstr ""
|
||||
"Les articles de votre panier ne vous sont plus réservés. Vous pouvez "
|
||||
"toujours compléter votre commande tant qu'ils sont disponibles."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "Renouveler la réservation"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Réservation renouvelée"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Aperçu de vos produits commandés."
|
||||
|
||||
@@ -37420,6 +37394,13 @@ msgstr "Accès en écriture"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Veuillez saisir votre mot de passe actuel si vous souhaitez modifier "
|
||||
#~ "votre adresse électronique ou votre mot de passe."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,16 +8,16 @@ msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"PO-Revision-Date: 2022-02-22 22:00+0000\n"
|
||||
"Last-Translator: Ismael Menéndez Fernández <ismael.menendez@balidea.com>\n"
|
||||
"Language-Team: Galician <https://translate.pretix.eu/projects/pretix/pretix-"
|
||||
"js/gl/>\n"
|
||||
"PO-Revision-Date: 2025-12-03 23:00+0000\n"
|
||||
"Last-Translator: sandra r <sandrarial@gestiontickets.online>\n"
|
||||
"Language-Team: Galician <https://translate.pretix.eu/projects/pretix/"
|
||||
"pretix-js/gl/>\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.8\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:56
|
||||
#: pretix/plugins/banktransfer/static/pretixplugins/banktransfer/ui.js:62
|
||||
@@ -31,106 +31,104 @@ msgstr "Comentario:"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:34
|
||||
msgid "PayPal"
|
||||
msgstr ""
|
||||
msgstr "PayPal"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:35
|
||||
msgid "Venmo"
|
||||
msgstr ""
|
||||
msgstr "Venmo"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:36
|
||||
#: pretix/static/pretixpresale/js/walletdetection.js:38
|
||||
msgid "Apple Pay"
|
||||
msgstr ""
|
||||
msgstr "Apple Pay"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:37
|
||||
msgid "Itaú"
|
||||
msgstr ""
|
||||
msgstr "Itaú"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:38
|
||||
msgid "PayPal Credit"
|
||||
msgstr ""
|
||||
msgstr "Crédito PayPal"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:39
|
||||
msgid "Credit Card"
|
||||
msgstr ""
|
||||
msgstr "Tarxeta de crédito"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:40
|
||||
msgid "PayPal Pay Later"
|
||||
msgstr ""
|
||||
msgstr "PayPal Pagar Máis Tarde"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:41
|
||||
msgid "iDEAL"
|
||||
msgstr ""
|
||||
msgstr "iDEAL"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:42
|
||||
msgid "SEPA Direct Debit"
|
||||
msgstr ""
|
||||
msgstr "Débito directo SEPA"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:43
|
||||
msgid "Bancontact"
|
||||
msgstr ""
|
||||
msgstr "Bancontact"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:44
|
||||
msgid "giropay"
|
||||
msgstr ""
|
||||
msgstr "giropay"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:45
|
||||
msgid "SOFORT"
|
||||
msgstr ""
|
||||
msgstr "SOFORT"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:46
|
||||
#, fuzzy
|
||||
#| msgid "Yes"
|
||||
msgid "eps"
|
||||
msgstr "Si"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:47
|
||||
msgid "MyBank"
|
||||
msgstr ""
|
||||
msgstr "MyBank"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:48
|
||||
msgid "Przelewy24"
|
||||
msgstr ""
|
||||
msgstr "Przelewy24"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:49
|
||||
msgid "Verkkopankki"
|
||||
msgstr ""
|
||||
msgstr "Verkkopankki"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:50
|
||||
msgid "PayU"
|
||||
msgstr ""
|
||||
msgstr "PayU"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:51
|
||||
msgid "BLIK"
|
||||
msgstr ""
|
||||
msgstr "BLIK"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:52
|
||||
msgid "Trustly"
|
||||
msgstr ""
|
||||
msgstr "De confianza"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:53
|
||||
msgid "Zimpler"
|
||||
msgstr ""
|
||||
msgstr "Zimpler"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:54
|
||||
msgid "Maxima"
|
||||
msgstr ""
|
||||
msgstr "Máxima"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:55
|
||||
msgid "OXXO"
|
||||
msgstr ""
|
||||
msgstr "OXXO"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:56
|
||||
msgid "Boleto"
|
||||
msgstr ""
|
||||
msgstr "Ticket"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:57
|
||||
msgid "WeChat Pay"
|
||||
msgstr ""
|
||||
msgstr "Pagar con WeChat"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:58
|
||||
msgid "Mercado Pago"
|
||||
msgstr ""
|
||||
msgstr "Mercado Pago"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:167
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:50
|
||||
@@ -149,7 +147,7 @@ msgstr "Confirmando o pagamento…"
|
||||
|
||||
#: pretix/plugins/paypal2/static/pretixplugins/paypal2/pretix-paypal.js:254
|
||||
msgid "Payment method unavailable"
|
||||
msgstr ""
|
||||
msgstr "O método de pago non está dispoñible"
|
||||
|
||||
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:15
|
||||
#: pretix/plugins/statistics/static/pretixplugins/statistics/statistics.js:39
|
||||
@@ -240,11 +238,11 @@ msgstr "Cancelado"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:46
|
||||
msgid "Confirmed"
|
||||
msgstr ""
|
||||
msgstr "Confirmado"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:47
|
||||
msgid "Approval pending"
|
||||
msgstr ""
|
||||
msgstr "Aprobación pendente"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:48
|
||||
msgid "Redeemed"
|
||||
@@ -300,16 +298,12 @@ msgid "Ticket code revoked/changed"
|
||||
msgstr "Código de tícket revogado/cambiado"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:63
|
||||
#, fuzzy
|
||||
#| msgid "Ticket not paid"
|
||||
msgid "Ticket blocked"
|
||||
msgstr "Tícket pendente de pago"
|
||||
msgstr "Ticket bloqueado"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:64
|
||||
#, fuzzy
|
||||
#| msgid "Ticket not paid"
|
||||
msgid "Ticket not valid at this time"
|
||||
msgstr "Tícket pendente de pago"
|
||||
msgstr "O ticket non é válido neste momento"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:65
|
||||
msgid "Order canceled"
|
||||
@@ -317,11 +311,11 @@ msgstr "Pedido cancelado"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:66
|
||||
msgid "Ticket code is ambiguous on list"
|
||||
msgstr ""
|
||||
msgstr "O código do ticket é ambiguo na lista"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:67
|
||||
msgid "Order not approved"
|
||||
msgstr ""
|
||||
msgstr "Orde non aprobada"
|
||||
|
||||
#: pretix/plugins/webcheckin/static/pretixplugins/webcheckin/main.js:68
|
||||
msgid "Checked-in Tickets"
|
||||
@@ -422,7 +416,7 @@ msgstr ""
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:276
|
||||
msgid "If this takes longer than a few minutes, please contact us."
|
||||
msgstr ""
|
||||
msgstr "Se isto leva máis duns minutos, póñase en contacto connosco."
|
||||
|
||||
#: pretix/static/pretixbase/js/asynctask.js:331
|
||||
msgid "Close message"
|
||||
@@ -452,7 +446,7 @@ msgstr "está despois"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:40
|
||||
msgid "="
|
||||
msgstr ""
|
||||
msgstr "="
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:99
|
||||
msgid "Product"
|
||||
@@ -464,7 +458,7 @@ msgstr "Ver variacións do produto"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:107
|
||||
msgid "Gate"
|
||||
msgstr ""
|
||||
msgstr "Porta"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:111
|
||||
msgid "Current date and time"
|
||||
@@ -472,11 +466,11 @@ msgstr "Data e hora actual"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:115
|
||||
msgid "Current day of the week (1 = Monday, 7 = Sunday)"
|
||||
msgstr ""
|
||||
msgstr "Día actual da semana (1 = luns, 7 = domingo)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:119
|
||||
msgid "Current entry status"
|
||||
msgstr ""
|
||||
msgstr "Estado de entrada actual"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:123
|
||||
msgid "Number of previous entries"
|
||||
@@ -487,40 +481,32 @@ msgid "Number of previous entries since midnight"
|
||||
msgstr "Número de entradas previas desde a medianoite"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:131
|
||||
#, fuzzy
|
||||
#| msgid "Number of previous entries"
|
||||
msgid "Number of previous entries since"
|
||||
msgstr "Número de entradas previas"
|
||||
msgstr "Número de entradas anteriores desde"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:135
|
||||
#, fuzzy
|
||||
#| msgid "Number of previous entries"
|
||||
msgid "Number of previous entries before"
|
||||
msgstr "Número de entradas previas"
|
||||
msgstr "Número de entradas anteriores antes de"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:139
|
||||
msgid "Number of days with a previous entry"
|
||||
msgstr "Número de días cunha entrada previa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:143
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry since"
|
||||
msgstr "Número de días cunha entrada previa"
|
||||
msgstr "Número de días cunha entrada previa desde"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:147
|
||||
#, fuzzy
|
||||
#| msgid "Number of days with a previous entry"
|
||||
msgid "Number of days with a previous entry before"
|
||||
msgstr "Número de días cunha entrada previa"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:151
|
||||
msgid "Minutes since last entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
msgstr "Minutos desde a última entrada (-1 na primeira entrada)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:155
|
||||
msgid "Minutes since first entry (-1 on first entry)"
|
||||
msgstr ""
|
||||
msgstr "Minutos desde a primeira entrada (-1 na primeira entrada)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:182
|
||||
msgid "All of the conditions below (AND)"
|
||||
@@ -564,25 +550,25 @@ msgstr "minutos"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:192
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
msgstr "Duplicar"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:193
|
||||
msgctxt "entry_status"
|
||||
msgid "present"
|
||||
msgstr ""
|
||||
msgstr "presente"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:194
|
||||
msgctxt "entry_status"
|
||||
msgid "absent"
|
||||
msgstr ""
|
||||
msgstr "ausente"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:289
|
||||
msgid "Error: Product not found!"
|
||||
msgstr ""
|
||||
msgstr "Erro: Non se atopou o produto!"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/checkinrules.js:296
|
||||
msgid "Error: Variation not found!"
|
||||
msgstr ""
|
||||
msgstr "Erro: Variación non atopada!"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/editor.js:171
|
||||
msgid "Check-in QR"
|
||||
@@ -597,16 +583,12 @@ msgid "Group of objects"
|
||||
msgstr "Grupo de obxectos"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/editor.js:909
|
||||
#, fuzzy
|
||||
#| msgid "Text object"
|
||||
msgid "Text object (deprecated)"
|
||||
msgstr "Obxecto de texto"
|
||||
msgstr "Obxecto de texto (obsoleto)"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/editor.js:911
|
||||
#, fuzzy
|
||||
#| msgid "Text object"
|
||||
msgid "Text box"
|
||||
msgstr "Obxecto de texto"
|
||||
msgstr "Caixa de texto"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/editor.js:913
|
||||
msgid "Barcode area"
|
||||
@@ -655,26 +637,26 @@ msgid "Unknown error."
|
||||
msgstr "Erro descoñecido."
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:309
|
||||
#, fuzzy
|
||||
#| msgid "Your color has great contrast and is very easy to read!"
|
||||
msgid "Your color has great contrast and will provide excellent accessibility."
|
||||
msgstr "A túa cor ten moito contraste e é moi doada de ler!"
|
||||
msgstr ""
|
||||
"A túa cor ten un gran contraste e proporcionará unha excelente "
|
||||
"accesibilidade."
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:313
|
||||
#, fuzzy
|
||||
#| msgid "Your color has decent contrast and is probably good-enough to read!"
|
||||
msgid ""
|
||||
"Your color has decent contrast and is sufficient for minimum accessibility "
|
||||
"requirements."
|
||||
msgstr ""
|
||||
"A túa cor ten un contraste axeitado e probablemente sexa suficientemente "
|
||||
"lexible!"
|
||||
"A túa cor ten un contraste decente e é suficiente para os requisitos mínimos "
|
||||
"de accesibilidade."
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:317
|
||||
msgid ""
|
||||
"Your color has insufficient contrast to white. Accessibility of your site "
|
||||
"will be impacted."
|
||||
msgstr ""
|
||||
"A túa cor non ten suficiente contraste co branco. A accesibilidade do teu "
|
||||
"sitio web verase afectada."
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:443
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:463
|
||||
@@ -695,11 +677,11 @@ msgstr "Soamente seleccionados"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:839
|
||||
msgid "Enter page number between 1 and %(max)s."
|
||||
msgstr ""
|
||||
msgstr "Introduza o número de páxina entre 1 e %(max)s."
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:842
|
||||
msgid "Invalid page number."
|
||||
msgstr ""
|
||||
msgstr "Número de páxina non válido."
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/main.js:1000
|
||||
msgid "Use a different name internally"
|
||||
@@ -718,10 +700,8 @@ msgid "Calculating default price…"
|
||||
msgstr "Calculando o prezo por defecto…"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/plugins.js:69
|
||||
#, fuzzy
|
||||
#| msgid "Search results"
|
||||
msgid "No results"
|
||||
msgstr "Resultados da procura"
|
||||
msgstr "Sen resultados"
|
||||
|
||||
#: pretix/static/pretixcontrol/js/ui/question.js:41
|
||||
msgid "Others"
|
||||
@@ -752,7 +732,7 @@ msgstr "O carro da compra caducou"
|
||||
#: pretix/static/pretixpresale/js/ui/cart.js:58
|
||||
#: pretix/static/pretixpresale/js/ui/cart.js:84
|
||||
msgid "Your cart is about to expire."
|
||||
msgstr ""
|
||||
msgstr "O teu carriño está a piques de caducar."
|
||||
|
||||
#: pretix/static/pretixpresale/js/ui/cart.js:62
|
||||
msgid "The items in your cart are reserved for you for one minute."
|
||||
@@ -762,16 +742,10 @@ msgstr[1] ""
|
||||
"Os artigos da túa cesta están reservados para ti durante {num} minutos."
|
||||
|
||||
#: pretix/static/pretixpresale/js/ui/cart.js:83
|
||||
#, fuzzy
|
||||
#| msgid "Cart expired"
|
||||
msgid "Your cart has expired."
|
||||
msgstr "O carro da compra caducou"
|
||||
msgstr "O carro da compra caducou."
|
||||
|
||||
#: pretix/static/pretixpresale/js/ui/cart.js:86
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The items in your cart are no longer reserved for you. You can still "
|
||||
#| "complete your order as long as they’re available."
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they're available."
|
||||
@@ -781,11 +755,11 @@ msgstr ""
|
||||
|
||||
#: pretix/static/pretixpresale/js/ui/cart.js:87
|
||||
msgid "Do you want to renew the reservation period?"
|
||||
msgstr ""
|
||||
msgstr "Queres renovar o período de reserva?"
|
||||
|
||||
#: pretix/static/pretixpresale/js/ui/cart.js:90
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
msgstr "Renovar reserva"
|
||||
|
||||
#: pretix/static/pretixpresale/js/ui/main.js:194
|
||||
msgid "The organizer keeps %(currency)s %(amount)s"
|
||||
@@ -805,71 +779,66 @@ msgstr "A súa hora local:"
|
||||
|
||||
#: pretix/static/pretixpresale/js/walletdetection.js:39
|
||||
msgid "Google Pay"
|
||||
msgstr ""
|
||||
msgstr "Google Pay"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:16
|
||||
msgctxt "widget"
|
||||
msgid "Quantity"
|
||||
msgstr ""
|
||||
msgstr "Cantidade"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:17
|
||||
msgctxt "widget"
|
||||
msgid "Decrease quantity"
|
||||
msgstr ""
|
||||
msgstr "Diminuír a cantidade"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:18
|
||||
msgctxt "widget"
|
||||
msgid "Increase quantity"
|
||||
msgstr ""
|
||||
msgstr "Aumentar a cantidade"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:19
|
||||
msgctxt "widget"
|
||||
msgid "Filter events by"
|
||||
msgstr ""
|
||||
msgstr "Filtrar eventos por"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:20
|
||||
msgctxt "widget"
|
||||
msgid "Filter"
|
||||
msgstr ""
|
||||
msgstr "Filtro"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:21
|
||||
msgctxt "widget"
|
||||
msgid "Price"
|
||||
msgstr ""
|
||||
msgstr "Prezo"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:22
|
||||
#, javascript-format
|
||||
msgctxt "widget"
|
||||
msgid "Original price: %s"
|
||||
msgstr ""
|
||||
msgstr "Prezo orixinal: %s"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:23
|
||||
#, javascript-format
|
||||
msgctxt "widget"
|
||||
msgid "New price: %s"
|
||||
msgstr ""
|
||||
msgstr "Novo prezo: %s"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:24
|
||||
#, fuzzy
|
||||
#| msgid "Selected only"
|
||||
msgctxt "widget"
|
||||
msgid "Select"
|
||||
msgstr "Soamente seleccionados"
|
||||
msgstr "Seleccione"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:25
|
||||
#, fuzzy, javascript-format
|
||||
#| msgid "Selected only"
|
||||
#, javascript-format
|
||||
msgctxt "widget"
|
||||
msgid "Select %s"
|
||||
msgstr "Soamente seleccionados"
|
||||
msgstr "Seleccione %s"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:26
|
||||
#, fuzzy, javascript-format
|
||||
#| msgctxt "widget"
|
||||
#| msgid "See variations"
|
||||
#, javascript-format
|
||||
msgctxt "widget"
|
||||
msgid "Select variant %s"
|
||||
msgstr "Ver variacións"
|
||||
msgstr "Seleccione a variante %s"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:27
|
||||
msgctxt "widget"
|
||||
@@ -905,7 +874,7 @@ msgstr "dende %(currency)s %(price)s"
|
||||
#, javascript-format
|
||||
msgctxt "widget"
|
||||
msgid "Image of %s"
|
||||
msgstr ""
|
||||
msgstr "Imaxe de %s"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:34
|
||||
msgctxt "widget"
|
||||
@@ -940,25 +909,19 @@ msgstr "Só dispoñible mediante vale"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:40
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:43
|
||||
#, fuzzy
|
||||
#| msgctxt "widget"
|
||||
#| msgid "currently available: %s"
|
||||
msgctxt "widget"
|
||||
msgid "Not yet available"
|
||||
msgstr "dispoñible actualmente: %s"
|
||||
msgstr "Aínda non dispoñible"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:41
|
||||
msgctxt "widget"
|
||||
msgid "Not available anymore"
|
||||
msgstr ""
|
||||
msgstr "Xa non está dispoñible"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:42
|
||||
#, fuzzy
|
||||
#| msgctxt "widget"
|
||||
#| msgid "currently available: %s"
|
||||
msgctxt "widget"
|
||||
msgid "Currently not available"
|
||||
msgstr "dispoñible actualmente: %s"
|
||||
msgstr "Non dispoñible actualmente"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:44
|
||||
#, javascript-format
|
||||
@@ -991,9 +954,6 @@ msgid "Open ticket shop"
|
||||
msgstr "Abrir a tenda de tíckets"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:50
|
||||
#, fuzzy
|
||||
#| msgctxt "widget"
|
||||
#| msgid "Resume checkout"
|
||||
msgctxt "widget"
|
||||
msgid "Checkout"
|
||||
msgstr "Continuar co pagamento"
|
||||
@@ -1053,17 +1013,14 @@ msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:62
|
||||
#, fuzzy
|
||||
#| msgctxt "widget"
|
||||
#| msgid "Resume checkout"
|
||||
msgctxt "widget"
|
||||
msgid "Close checkout"
|
||||
msgstr "Continuar co pagamento"
|
||||
msgstr "Pagamento pechado"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:63
|
||||
msgctxt "widget"
|
||||
msgid "You cannot cancel this operation. Please wait for loading to finish."
|
||||
msgstr ""
|
||||
msgstr "Non podes cancelar esta operación. Agarda a que remate a carga."
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:64
|
||||
msgctxt "widget"
|
||||
@@ -1071,20 +1028,14 @@ msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:65
|
||||
#, fuzzy
|
||||
#| msgctxt "widget"
|
||||
#| msgid "See variations"
|
||||
msgctxt "widget"
|
||||
msgid "Show variants"
|
||||
msgstr "Ver variacións"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:66
|
||||
#, fuzzy
|
||||
#| msgctxt "widget"
|
||||
#| msgid "See variations"
|
||||
msgctxt "widget"
|
||||
msgid "Hide variants"
|
||||
msgstr "Ver variacións"
|
||||
msgstr "Ocultar variantes"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:67
|
||||
msgctxt "widget"
|
||||
@@ -1133,6 +1084,9 @@ msgid ""
|
||||
"add yourself to the waiting list. We will then notify if seats are available "
|
||||
"again."
|
||||
msgstr ""
|
||||
"Algunhas ou todas as categorías de entradas están esgotadas. Se queres, "
|
||||
"podes engadirte á lista de espera. Despois avisarémosche se volven quedar "
|
||||
"asentos dispoñibles."
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:76
|
||||
msgctxt "widget"
|
||||
@@ -1169,31 +1123,31 @@ msgstr "Dom"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:85
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
msgstr "Luns"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:86
|
||||
msgid "Tuesday"
|
||||
msgstr ""
|
||||
msgstr "Martes"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:87
|
||||
msgid "Wednesday"
|
||||
msgstr ""
|
||||
msgstr "Mércores"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:88
|
||||
msgid "Thursday"
|
||||
msgstr ""
|
||||
msgstr "Xoves"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:89
|
||||
msgid "Friday"
|
||||
msgstr ""
|
||||
msgstr "Venres"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:90
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
msgstr "Sábado"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:91
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
msgstr "Domingo"
|
||||
|
||||
#: pretix/static/pretixpresale/js/widget/widget.js:94
|
||||
msgid "January"
|
||||
|
||||
@@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: HE PRETIX\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-05-21 10:46+0000\n"
|
||||
"Last-Translator: Raphael Michel <michel@rami.io>\n"
|
||||
"Language-Team: Hebrew <https://translate.pretix.eu/projects/pretix/pretix/he/"
|
||||
@@ -1206,7 +1206,7 @@ msgstr "שם פרטי"
|
||||
msgid "Family name"
|
||||
msgstr "שם משפחה"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1220,7 +1220,7 @@ msgstr "שם משפחה"
|
||||
msgid "Default"
|
||||
msgstr "ברירת מחדל"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "פשוט עם לוגו"
|
||||
|
||||
@@ -3262,7 +3262,7 @@ msgstr "השאר אותי מחובר"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "השילוב הזה של פרטי התחברות אינו מוכר במערכת שלנו."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "מסיבות אבטחה, אנא המתן 5 דקות לפני שתנסה שוב."
|
||||
@@ -3277,7 +3277,7 @@ msgid ""
|
||||
msgstr "כבר נרשמת עם כתובת המייל הזו, אנא השתמש בטופס ההתחברות."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "אנא הזן את אותה הסיסמה פעמיים"
|
||||
@@ -3287,7 +3287,7 @@ msgstr "אנא הזן את אותה הסיסמה פעמיים"
|
||||
msgid "Repeat password"
|
||||
msgstr "חזור על הסיסמה"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3452,49 +3452,42 @@ msgstr "סמארטפון עם אפליקציית מאמת"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "טוקן חומרה תואם WebAuthn (למשל Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"אנא הזן את הסיסמה הנוכחית שלך אם ברצונך לשנות את כתובת האימייל או את הסיסמה."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "הסיסמה הנוכחית שהזנת אינה נכונה."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "אנא בחר סיסמה שונה מהנוכחית."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "הסיסמה הנוכחית שלך"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "סיסמה חדשה"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "חזור על הסיסמה החדשה"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr "כבר קיים חשבון הקשור לכתובת האימייל הזו. אנא בחר כתובת אחרת."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "כתובת דוא\"ל"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3677,7 +3670,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"עד {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4325,7 +4318,7 @@ msgstr "אם תכבה אפשרות זו, לא תקבל שום התראות."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "משתמש"
|
||||
|
||||
@@ -7257,7 +7250,7 @@ msgstr "תאריכים"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "סכום נטו"
|
||||
|
||||
@@ -7269,8 +7262,8 @@ msgstr "יתרה ממתינה"
|
||||
msgid "Purchased products"
|
||||
msgstr "מוצרים שנרכשו"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "הצג פרטי הזמנה"
|
||||
@@ -7738,10 +7731,10 @@ msgstr "מחיר כולל תוספות"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "ג'ון דו"
|
||||
|
||||
@@ -8068,7 +8061,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "שם משתתף לברכה"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "מר דו"
|
||||
@@ -8829,7 +8822,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "את/ה מקבל/ת דוא\"ל זה כי הזמנת כרטיסים לאירוע {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "הזמנה ללוח שנה"
|
||||
@@ -9236,33 +9229,33 @@ msgstr ""
|
||||
"אירעה שגיאה בזמן שניסינו להחזיר לך את הכסף. אנא צור קשר עם מארגן האירוע "
|
||||
"למידע נוסף."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "הצג פרטי הרשמה"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "חברת דוגמה"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "כרטיס כניסה לדוגמה"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "ניתן להכניס כאן טקסט אישי עם סיבה."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "הסכום חויב מהכרטיס שלך."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "אנא העבר כסף לחשבון הבנק הבא: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "ערך זה יוחלף לפי פרמטרים דינמיים."
|
||||
@@ -17585,7 +17578,7 @@ msgstr "כרטיסים"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "מיסים"
|
||||
|
||||
@@ -21900,7 +21893,7 @@ msgstr "ניתן לרכוש רק באמצעות שובר"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>בתוספת</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -21909,7 +21902,7 @@ msgstr "<strong>בתוספת</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "כולל %(rate)s%% %(taxname)s"
|
||||
@@ -22950,7 +22943,7 @@ msgstr "לא בטוח"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "סך הכל"
|
||||
|
||||
@@ -30004,7 +29997,7 @@ msgid "Upload time"
|
||||
msgstr "שעת העלאה"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33581,7 +33574,7 @@ msgstr "הוסף עוד %(item)s לעגלתך. כרגע יש לך %(count)s בע
|
||||
msgid "Current value:"
|
||||
msgstr "ערך נוכחי:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -33589,17 +33582,17 @@ msgstr[0] "מוצר אחד"
|
||||
msgstr[1] "%(num)s מוצרים"
|
||||
msgstr[2] "%(num)s מוצרים"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "כולל %(tax_sum)s מסים"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "הפריטים בעגלתך שמורים עבורך למשך %(minutes)s דקות."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -33607,20 +33600,20 @@ msgstr ""
|
||||
"הפריטים בעגלתך אינם שמורים עוד עבורך. תוכל עדיין להשלים את ההזמנה כל עוד הם "
|
||||
"זמינים."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "תיאור האירוע"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "תקופת שמירה"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "סקירה של המוצרים שהוזמנו."
|
||||
|
||||
@@ -35604,6 +35597,13 @@ msgstr "גישה לכתיבה"
|
||||
msgid "Kosovo"
|
||||
msgstr "קוסובו"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "אנא הזן את הסיסמה הנוכחית שלך אם ברצונך לשנות את כתובת האימייל או את "
|
||||
#~ "הסיסמה."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-03-04 16:16+0000\n"
|
||||
"Last-Translator: Martin Gross <gross@rami.io>\n"
|
||||
"Language-Team: Croatian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1227,7 +1227,7 @@ msgstr "Ime"
|
||||
msgid "Family name"
|
||||
msgstr "Prezime"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1241,7 +1241,7 @@ msgstr "Prezime"
|
||||
msgid "Default"
|
||||
msgstr "Zadano"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Jednostavno s logom"
|
||||
|
||||
@@ -3308,7 +3308,7 @@ msgstr "Ostavi me prijavljenog"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Ova kombinacija vjerodajnica nije poznata našem sustavu."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3326,7 +3326,7 @@ msgstr ""
|
||||
"prijavu."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Molimo unesite istu lozinku dva puta"
|
||||
@@ -3336,7 +3336,7 @@ msgstr "Molimo unesite istu lozinku dva puta"
|
||||
msgid "Repeat password"
|
||||
msgstr "Ponovite lozinku"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3508,51 +3508,43 @@ msgstr "Pametni telefon s aplikacijom Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-kompatibilni hardverski token (npr. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Molimo unesite svoju trenutnu lozinku ako želite promijeniti svoju adresu e-"
|
||||
"pošte ili lozinku."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Trenutna lozinka koju ste unijeli nije bila točna."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Molimo odaberite lozinku različitu od vaše trenutne."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Vaša trenutna lozinka"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nova lozinka"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Ponovite novu lozinku"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
"Već postoji profil povezan s ovom adresom e-pošte. Molimo odaberite drugu."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Adresa e-pošte"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3737,7 +3729,7 @@ msgstr ""
|
||||
"{from_date} \n"
|
||||
"do {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4393,7 +4385,7 @@ msgstr "Ako je isključeno, nećete primati nikakve obavijesti."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Korisnik"
|
||||
|
||||
@@ -7402,7 +7394,7 @@ msgstr "Datumi"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Neto ukupno"
|
||||
|
||||
@@ -7414,8 +7406,8 @@ msgstr "Iznos na čekanju"
|
||||
msgid "Purchased products"
|
||||
msgstr "Kupljeni proizvodi"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Pogledaj detalje narudžbe"
|
||||
@@ -7871,10 +7863,10 @@ msgstr "Cijena uključujući dodatke"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8201,7 +8193,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Ime sudionika za pozdrav"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "G. Doe"
|
||||
@@ -8927,7 +8919,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Primili ste ovu e-poštu jer ste naručili za {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Pozivnica za kalendar"
|
||||
@@ -9335,33 +9327,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Pogledajte detalje registracije"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Primjer korporacije"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Primjer ulaznice za ulaz"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Ovdje se može umetnuti individualni tekst s razlogom."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Iznos je naplaćen na vašu karticu."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Molimo prenesite novac na ovaj bankovni račun: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Ova vrijednost bit će zamijenjena na temelju dinamičkih parametara."
|
||||
@@ -16974,7 +16966,7 @@ msgstr "Ulaznice"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Porezi"
|
||||
|
||||
@@ -20964,7 +20956,7 @@ msgstr "Može se kupiti samo putem vaučera"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -20973,7 +20965,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "uključujući %(rate)s%% %(taxname)s"
|
||||
@@ -21948,7 +21940,7 @@ msgstr "NESIGURNO"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Ukupno"
|
||||
|
||||
@@ -28643,7 +28635,7 @@ msgid "Upload time"
|
||||
msgstr "Vrijeme učitavanja"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -32178,7 +32170,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Trenutna vrijednost:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -32186,36 +32178,36 @@ msgstr[0] "%(num)s proizvod"
|
||||
msgstr[1] "%(num)s proizvoda"
|
||||
msgstr[2] "%(num)s proizvoda"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "uključujući %(tax_sum)s poreza"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Stavke u vašoj košarici rezervirane su za vas na %(minutes)s minuta."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Opis događaja"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Razdoblje rezervacije"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Pregled vaših naručenih proizvoda."
|
||||
|
||||
@@ -34204,6 +34196,13 @@ msgstr "Pravo pisanja"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Molimo unesite svoju trenutnu lozinku ako želite promijeniti svoju adresu "
|
||||
#~ "e-pošte ili lozinku."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-05-17 18:00+0000\n"
|
||||
"Last-Translator: Patrick Chilton <chpatrick@gmail.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1208,7 +1208,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1222,7 +1222,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3282,7 +3282,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3297,7 +3297,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3307,7 +3307,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3464,48 +3464,42 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "E-mail cím"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3677,7 +3671,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4323,7 +4317,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -7127,7 +7121,7 @@ msgstr "Időpontok"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Nettó összeg"
|
||||
|
||||
@@ -7139,8 +7133,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Részletek megtekintése"
|
||||
@@ -7577,10 +7571,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7925,7 +7919,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8644,7 +8638,7 @@ msgstr ""
|
||||
"Azért küldtük ezt az e-mailt mert rendeltél jegyet a következő eseményre: "
|
||||
"{event}"
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Naptár meghívó"
|
||||
@@ -9023,33 +9017,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Regisztrációs adatok megtekintése"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -17060,7 +17054,7 @@ msgstr "Jegyek"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Adó"
|
||||
|
||||
@@ -21080,7 +21074,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plusz</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -21089,7 +21083,7 @@ msgstr "<strong>plusz</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "tartalmazza: %(rate)s%% %(taxname)s"
|
||||
@@ -22064,7 +22058,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Összeg"
|
||||
|
||||
@@ -28828,7 +28822,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -32316,24 +32310,24 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Megjegyzés:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Egy termék"
|
||||
msgstr[1] "%(num)s termék"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "%(tax_sum)s adót tartalmaz"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "A kosárba helyezett termékek még %(minutes)s percig vannak foglalva."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -32341,20 +32335,20 @@ msgstr ""
|
||||
"A kosárba helyezett tételek tovább már nincsenek lefoglalva. Még "
|
||||
"megpróbálhatod befejezni a rendelést, ha még elérhetőek."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Eseményleírás"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Eseményleírás"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Megrendelt termékek áttekintése."
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2023-11-18 15:00+0000\n"
|
||||
"Last-Translator: liimee <git.taaa@fedora.email>\n"
|
||||
"Language-Team: Indonesian <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -1230,7 +1230,7 @@ msgstr "Nama depan"
|
||||
msgid "Family name"
|
||||
msgstr "Nama belakang"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1244,7 +1244,7 @@ msgstr "Nama belakang"
|
||||
msgid "Default"
|
||||
msgstr "Bawaan"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Sederhana dengan logo"
|
||||
|
||||
@@ -3320,7 +3320,7 @@ msgstr "buat saya tetap masuk"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Kombinasi kredensial ini tidak diketahui oleh sistem kami."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Demi alasan keamanan, harap tunggu 5 menit sebelum kamu mencoba lagi."
|
||||
@@ -3337,7 +3337,7 @@ msgstr ""
|
||||
"login."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Silakan masukkan kata sandi yang sama dua kali"
|
||||
@@ -3347,7 +3347,7 @@ msgstr "Silakan masukkan kata sandi yang sama dua kali"
|
||||
msgid "Repeat password"
|
||||
msgstr "Masukkan kata kunci kembali"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3519,42 +3519,30 @@ msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
"Token perangkat keras yang kompatibel dengan WebAuthn (misalnya Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Silakan masukkan kata sandi kamu saat ini jika kamu ingin mengubah alamat "
|
||||
"email atau kata sandi kamu."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Kata sandi yang kamu masukkan saat ini salah."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Silakan pilih kata sandi yang berbeda dengan kata sandi kamu saat ini."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Kata sandi kamu saat ini"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Kata sandi baru"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Ulangi kata sandi baru"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3562,13 +3550,13 @@ msgstr ""
|
||||
"Sudah ada akun yang dikaitkan dengan alamat email ini. Silakan pilih yang "
|
||||
"lain."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Alamat email"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3751,7 +3739,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"sampai tanggal {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4413,7 +4401,7 @@ msgstr "Jika dimatikan, kamu tidak akan mendapat notifikasi apa pun."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Pengguna"
|
||||
|
||||
@@ -7571,7 +7559,7 @@ msgstr "tanggal"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Jumlah bersih"
|
||||
|
||||
@@ -7583,8 +7571,8 @@ msgstr "Jumlah yang tertunda"
|
||||
msgid "Purchased products"
|
||||
msgstr "Produk yang dibeli"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Lihat detail pesanan"
|
||||
@@ -8083,10 +8071,10 @@ msgstr "Harga sudah termasuk add-on"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8419,7 +8407,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Nama peserta untuk salam"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Tuan Doe"
|
||||
@@ -9203,7 +9191,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Anda menerima email ini karena kamu melakukan pemesanan untuk {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Undangan kalender"
|
||||
@@ -9665,33 +9653,33 @@ msgstr ""
|
||||
"Terjadi kesalahan saat mencoba mengirim uang kembali kepada kamu. Silakan "
|
||||
"menghubungi penyelenggara acara untuk informasi lebih lanjut."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Lihat detail pendaftaran"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Perusahaan Sampel"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Contoh Tiket Masuk"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Teks individual dengan alasan dapat disisipkan di sini."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Jumlah tersebut telah dibebankan ke kartu kamu."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Silakan transfer uang ke rekening bank ini: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Nilai ini akan diganti berdasarkan parameter dinamis."
|
||||
@@ -18455,7 +18443,7 @@ msgstr "Tiket"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Pajak"
|
||||
|
||||
@@ -22963,7 +22951,7 @@ msgstr "Hanya dapat dibeli menggunakan voucher"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22972,7 +22960,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "termasuk. %(rate)s%% %(taxname)s"
|
||||
@@ -24062,7 +24050,7 @@ msgstr "TIDAK AMAN"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
@@ -31569,7 +31557,7 @@ msgid "Upload time"
|
||||
msgstr "Waktu unggah"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -35330,23 +35318,23 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Nilai sekarang:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "%(num)s produk"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "termasuk %(tax_sum)s pajak"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Item di keranjang kamu dipesan untuk kamu selama %(minutes)s menit."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -35354,20 +35342,20 @@ msgstr ""
|
||||
"Item di keranjang kamu tidak lagi disediakan untuk Anda. Kamu masih dapat "
|
||||
"menyelesaikan pesanan kamu selama masih tersedia."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Deskripsi acara"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Periode reservasi"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Ikhtisar produk pesanan Anda."
|
||||
|
||||
@@ -37522,6 +37510,17 @@ msgstr "Akses tulis"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Silakan masukkan kata sandi kamu saat ini jika kamu ingin mengubah alamat "
|
||||
#~ "email atau kata sandi kamu."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-14 22:00+0000\n"
|
||||
"Last-Translator: Sanny <s.logiudice@comune.venariareale.to.it>\n"
|
||||
"Language-Team: Italian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1221,7 +1221,7 @@ msgstr "Nome"
|
||||
msgid "Family name"
|
||||
msgstr "Cognome"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1235,7 +1235,7 @@ msgstr "Cognome"
|
||||
msgid "Default"
|
||||
msgstr "Default"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "semplice con logo"
|
||||
|
||||
@@ -3309,7 +3309,7 @@ msgstr "Tienimi loggato"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Combinazione di credenziali non riconosciute."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Per motivi di sicurezza, aspetta 5 minuti prima di riprovare."
|
||||
@@ -3324,7 +3324,7 @@ msgid ""
|
||||
msgstr "Ti sei già registrato con questa email, per favore vai al login."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Inserisci la stessa password due volte"
|
||||
@@ -3334,7 +3334,7 @@ msgstr "Inserisci la stessa password due volte"
|
||||
msgid "Repeat password"
|
||||
msgstr "Ripeti la password"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3508,37 +3508,30 @@ msgstr "Smartphone con applicazione di autenticazione"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Token hardware compatibile con WebAuthn (p.es. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Inserisci la password attuale se desideri modificare l'email o la password."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "La password inserita non è corretta."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Per favore scegli una password diversa da quella attuale."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "La tua password attuale"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nuova password"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Ripeti la nuova password"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3546,13 +3539,13 @@ msgstr ""
|
||||
"Questa email risulta già associata a un altro account. Per favore, usa "
|
||||
"un'altra email."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Indirizzo email"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3730,7 +3723,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"a {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4400,7 +4393,7 @@ msgstr "Se è disattivata, non si riceveranno notifiche."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Utente"
|
||||
|
||||
@@ -7539,7 +7532,7 @@ msgstr "Date"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Totale netto"
|
||||
|
||||
@@ -7551,8 +7544,8 @@ msgstr "Ammontare rimanente"
|
||||
msgid "Purchased products"
|
||||
msgstr "Prodotti comprati"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Vedi i dettagli dell'ordine"
|
||||
@@ -8053,10 +8046,10 @@ msgstr "Prezzo inclusi componenti aggiuntivi"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Mario Rossi"
|
||||
|
||||
@@ -8383,7 +8376,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Nome del partecipante per il saluto"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Sig. Rossi"
|
||||
@@ -9179,7 +9172,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Hai ricevuto questa email perché hai effettuato un ordine per {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Invito al calendario"
|
||||
@@ -9639,34 +9632,34 @@ msgstr ""
|
||||
"Si è verificato un errore durante il tentativo di rimborsarti. Per favore, "
|
||||
"contatta l'organizzatore dell'evento per ulteriori informazioni."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Vedi dettagli di registrazione"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Azienda esempio"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Esempio di biglietto d'ingresso"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Un testo con una motivazione può essere inserito qui."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "L'importo è stato addebitato sulla tua carta."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Per favore, trasferisci i soldi a questo conto bancario: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Questo valore verrà sostituito in base a parametri dinamici."
|
||||
@@ -17798,7 +17791,7 @@ msgstr "Biglietti"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Tasse"
|
||||
|
||||
@@ -21898,7 +21891,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21907,7 +21900,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "incluso %(rate)s%% %(taxname)s"
|
||||
@@ -22891,7 +22884,7 @@ msgstr "NON SICURO"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Totale"
|
||||
|
||||
@@ -29759,7 +29752,7 @@ msgid "Upload time"
|
||||
msgstr "Scarica biglietto"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33347,25 +33340,25 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Valore attuale:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Un prodotto"
|
||||
msgstr[1] "%(num)s prodotti"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "inclusa tassa del %(tax_sum)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Gli elementi in tuo carrello saranno riservati per te re %(minutes)s minuti."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -33373,18 +33366,18 @@ msgstr ""
|
||||
"Gli articoli nel tuo carrello non sono più riservati per te. Puoi ancora "
|
||||
"completare il tuo ordine finché sono disponibili."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
msgid "Renew reservation"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -35392,6 +35385,13 @@ msgstr "Accesso in scrittura"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Inserisci la password attuale se desideri modificare l'email o la "
|
||||
#~ "password."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-18 17:00+0000\n"
|
||||
"Last-Translator: Hijiri Umemoto <hijiri@umemoto.org>\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-26 17:00+0000\n"
|
||||
"Last-Translator: Yasunobu YesNo Kawaguchi <kawaguti@gmail.com>\n"
|
||||
"Language-Team: Japanese <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
"ja/>\n"
|
||||
"Language: ja\n"
|
||||
@@ -1156,7 +1156,7 @@ msgstr "名(Given Name)"
|
||||
msgid "Family name"
|
||||
msgstr "氏(Surname/Family Name)"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1170,7 +1170,7 @@ msgstr "氏(Surname/Family Name)"
|
||||
msgid "Default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "ロゴ入りのシンプルなもの"
|
||||
|
||||
@@ -3236,7 +3236,7 @@ msgstr "ログインしたままにする"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "この組み合わせの資格情報は、当社のシステムには登録されていません。"
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3254,7 +3254,7 @@ msgstr ""
|
||||
"い。"
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "同じパスワードを2回入力してください"
|
||||
@@ -3264,7 +3264,7 @@ msgstr "同じパスワードを2回入力してください"
|
||||
msgid "Repeat password"
|
||||
msgstr "パスワードを再入力してください"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr "メールアドレス"
|
||||
|
||||
@@ -3429,38 +3429,30 @@ msgstr "Authenticatorアプリを搭載したスマートフォン"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn対応のハードウェアトークン(例:Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"メールアドレスまたはパスワードを変更する場合は、現在のパスワードを入力してく"
|
||||
"ださい。"
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "現在のパスワードが正しくありません。"
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "現在のパスワードとは異なるパスワードを選んでください。"
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "あなたの現在のパスワード"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "新しいパスワード"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "新しいパスワードをもう一度入力してください"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3468,11 +3460,11 @@ msgstr ""
|
||||
"このメールアドレスにはすでにアカウントが関連付けられています。別のメールアド"
|
||||
"レスを選択してください。"
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr "現在のメールアドレス"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr "新しいメールアドレス"
|
||||
|
||||
@@ -3644,7 +3636,7 @@ msgstr ""
|
||||
"{from_date}から\n"
|
||||
"{to_date}まで"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4304,7 +4296,7 @@ msgstr "電源を切ると、通知を受け取れません。"
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "ユーザー"
|
||||
|
||||
@@ -7333,7 +7325,7 @@ msgstr "日付"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "正味合計"
|
||||
|
||||
@@ -7345,8 +7337,8 @@ msgstr "保留中の金額"
|
||||
msgid "Purchased products"
|
||||
msgstr "購入した製品"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "注文の詳細を表示する"
|
||||
@@ -7822,10 +7814,10 @@ msgstr "アドオンおよびバンドル製品を含む価格"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "山田 太郎"
|
||||
|
||||
@@ -8153,7 +8145,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "参加者の呼びかけに使う名前"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "山田様"
|
||||
@@ -8901,7 +8893,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "「{event}」の注文をいただいたため、このメールをお送りしています。"
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "カレンダーの招待"
|
||||
@@ -9341,33 +9333,33 @@ msgstr ""
|
||||
"お金を返金しようとした際にエラーが発生しました。詳細情報については、イベント"
|
||||
"主催者にお問い合わせください。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "登録詳細を表示します"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "サンプル株式会社"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "サンプル用チケット"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "ここでユーザーの理由を述べることができる。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "金額はカードに請求されました。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "金額を次の口座へお振込ください: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "この値は動的パラメータに基づいて置換されます。"
|
||||
@@ -17802,7 +17794,7 @@ msgstr "チケット"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "税金"
|
||||
|
||||
@@ -22169,7 +22161,7 @@ msgstr "バウチャー利用時のみ購入可能"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22178,7 +22170,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "%(taxname)s%(rate)s パーセントを含む"
|
||||
@@ -22919,11 +22911,11 @@ msgstr "はい、注文を削除します"
|
||||
#: pretix/control/templates/pretixcontrol/order/deny.html:5
|
||||
#: pretix/control/templates/pretixcontrol/order/deny.html:9
|
||||
msgid "Deny order"
|
||||
msgstr "注文を拒絶"
|
||||
msgstr "注文を不承認"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/order/deny.html:27
|
||||
msgid "Yes, deny order"
|
||||
msgstr "はい、注文を断ります"
|
||||
msgstr "はい、注文を承認しません"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/order/extend.html:5
|
||||
#: pretix/control/templates/pretixcontrol/order/extend.html:9
|
||||
@@ -22947,7 +22939,7 @@ msgstr "承認"
|
||||
#: pretix/control/templates/pretixcontrol/orders/index.html:304
|
||||
#: pretix/control/views/orders.py:329
|
||||
msgid "Deny"
|
||||
msgstr "拒絶"
|
||||
msgstr "不承認"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:58
|
||||
#: pretix/control/templates/pretixcontrol/order/pay_complete.html:37
|
||||
@@ -23227,7 +23219,7 @@ msgstr "危険"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "合計"
|
||||
|
||||
@@ -30396,7 +30388,7 @@ msgid "Upload time"
|
||||
msgstr "アップロード時間"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -34043,23 +34035,23 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "現在の価格:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "%(num)s 個の製品"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "税%(tax_sum)sを含む"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "カート内のアイテムは%(minutes)s分間、あなたのために予約されています。"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -34067,16 +34059,16 @@ msgstr ""
|
||||
"カート内の商品はもはやあなたのために予約されていません。利用可能な限り、注文"
|
||||
"を完了することができます。"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "予約を更新"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr "予約が更新されました"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "あなたの注文された製品の概要について教えてください。"
|
||||
|
||||
@@ -36070,6 +36062,13 @@ msgstr "書き込みアクセス"
|
||||
msgid "Kosovo"
|
||||
msgstr "コソボ"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "メールアドレスまたはパスワードを変更する場合は、現在のパスワードを入力して"
|
||||
#~ "ください。"
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"PO-Revision-Date: 2025-11-18 17:00+0000\n"
|
||||
"Last-Translator: Hijiri Umemoto <hijiri@umemoto.org>\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-12-03 23:00+0000\n"
|
||||
"Last-Translator: SJang1 <git@sjang.dev>\n"
|
||||
"Language-Team: Korean <https://translate.pretix.eu/projects/pretix/pretix/ko/"
|
||||
">\n"
|
||||
"Language: ko\n"
|
||||
@@ -290,33 +290,27 @@ msgstr "묶음 상품은 그 자체로 또 다른 묶음을 포함 할 수 없
|
||||
|
||||
#: pretix/api/serializers/item.py:235
|
||||
msgid "The program start must not be empty."
|
||||
msgstr ""
|
||||
msgstr "프로그램 시작일정은 비어 있어서는 안 됩니다."
|
||||
|
||||
#: pretix/api/serializers/item.py:239
|
||||
msgid "The program end must not be empty."
|
||||
msgstr ""
|
||||
msgstr "프로그램 종료일정은 비어 있어서는 안 됩니다."
|
||||
|
||||
#: pretix/api/serializers/item.py:242 pretix/base/models/items.py:2321
|
||||
#, fuzzy
|
||||
#| msgid "The maximum date must not be before the minimum value."
|
||||
msgid "The program end must not be before the program start."
|
||||
msgstr "종료일(최대 날짜)은 시작일(최소값)보다 앞서면 안됩니다."
|
||||
msgstr "종료일은 시작일보다 앞서면 안됩니다."
|
||||
|
||||
#: pretix/api/serializers/item.py:247 pretix/base/models/items.py:2315
|
||||
#, fuzzy
|
||||
#| msgid "You can not select a subevent if your event is not an event series."
|
||||
msgid "You cannot use program times on an event series."
|
||||
msgstr ""
|
||||
"당신의이벤트가 이벤트 시리즈가 아닌 경우 하위 이벤트를 선택할 수 없습니다."
|
||||
msgstr "이벤트 시리즈에 있는 시간은 사용하실 수 없습니다."
|
||||
|
||||
#: pretix/api/serializers/item.py:337
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Updating add-ons, bundles, program times or variations via PATCH/PUT is not "
|
||||
"supported. Please use the dedicated nested endpoint."
|
||||
msgstr ""
|
||||
"추가 기능, 묶음 상품들, 또는 변형은 PATCH/PUT를 통해 업데이트 할 수 없습니"
|
||||
"다. 전용 중첩은 마지막 지점에서 사용하세요"
|
||||
"추가 기능, 묶음 상품들, 또는 변형은 PATCH/PUT를 통해 업데이트 할 수 없습니다."
|
||||
" 전용 중첩은 마지막 지점에서 사용하세요."
|
||||
|
||||
#: pretix/api/serializers/item.py:345
|
||||
msgid "Only admission products can currently be personalized."
|
||||
@@ -573,22 +567,15 @@ msgid "Event series date deleted"
|
||||
msgstr "이벤트 시리즈 날짜 삭제"
|
||||
|
||||
#: pretix/api/webhooks.py:374
|
||||
#, fuzzy
|
||||
#| msgid "Product name"
|
||||
msgid "Product changed"
|
||||
msgstr "제품명"
|
||||
msgstr "제품 변경됨"
|
||||
|
||||
#: pretix/api/webhooks.py:375
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Product changed (including product added or deleted and including changes "
|
||||
#| "to nested objects like variations or bundles)"
|
||||
msgid ""
|
||||
"This includes product added or deleted and changes to nested objects like "
|
||||
"variations or bundles."
|
||||
msgstr ""
|
||||
"제품 변경(제품 추가 또는 삭제, 변형 또는 번들과 같은 중첩된 객체에 대한 변경 "
|
||||
"포함)"
|
||||
msgstr "여기에는 추가되거나 삭제되거나 변경된 중첩오브젝트나 번들과 같은 사항이 포함"
|
||||
"됩니다."
|
||||
|
||||
#: pretix/api/webhooks.py:380
|
||||
msgid "Shop taken live"
|
||||
@@ -623,16 +610,12 @@ msgid "Waiting list entry received voucher"
|
||||
msgstr "대기자 명단 항목이 바우처를 받았습니다"
|
||||
|
||||
#: pretix/api/webhooks.py:412
|
||||
#, fuzzy
|
||||
#| msgid "Voucher code"
|
||||
msgid "Voucher added"
|
||||
msgstr "바우처 코드"
|
||||
msgstr "바우처 추가됨"
|
||||
|
||||
#: pretix/api/webhooks.py:416
|
||||
#, fuzzy
|
||||
#| msgid "Voucher assigned"
|
||||
msgid "Voucher changed"
|
||||
msgstr "바우처 할당"
|
||||
msgstr "바우처 변경됨"
|
||||
|
||||
#: pretix/api/webhooks.py:417
|
||||
msgid ""
|
||||
@@ -643,10 +626,8 @@ msgstr ""
|
||||
"하지 않습니다."
|
||||
|
||||
#: pretix/api/webhooks.py:421
|
||||
#, fuzzy
|
||||
#| msgid "Voucher redeemed"
|
||||
msgid "Voucher deleted"
|
||||
msgstr "바우처 상환"
|
||||
msgstr "바우처 제거됨"
|
||||
|
||||
#: pretix/api/webhooks.py:425
|
||||
msgid "Customer account created"
|
||||
@@ -671,7 +652,7 @@ msgstr "고객 계정 익명화되었습니다"
|
||||
#: pretix/plugins/banktransfer/payment.py:513
|
||||
#: pretix/presale/forms/customer.py:152
|
||||
msgid "This field is required."
|
||||
msgstr "이 필드는 필수입니다"
|
||||
msgstr "이 필드는 필수입니다."
|
||||
|
||||
#: pretix/base/addressvalidation.py:213
|
||||
msgid "Enter a postal code in the format XXX."
|
||||
@@ -721,7 +702,7 @@ msgstr "비밀번호"
|
||||
|
||||
#: pretix/base/auth.py:176 pretix/base/auth.py:183
|
||||
msgid "Your password must contain both numeric and alphabetic characters."
|
||||
msgstr "비밀번호는 숫자와 알파벳 문자가 모두 포함되어야 합니다"
|
||||
msgstr "비밀번호는 숫자와 알파벳 문자가 모두 포함되어야 합니다."
|
||||
|
||||
#: pretix/base/auth.py:202 pretix/base/auth.py:212
|
||||
#, python-format
|
||||
@@ -815,28 +796,21 @@ msgstr ""
|
||||
"소를 확인해 주십시요."
|
||||
|
||||
#: pretix/base/datasync/datasync.py:263
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "Field \"{field_name}\" is not valid for {available_inputs}. Please check "
|
||||
#| "your {provider_name} settings."
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Field \"{field_name}\" does not exist. Please check your {provider_name} "
|
||||
"settings."
|
||||
msgstr ""
|
||||
"필드 \"{field_name}\"은 {available_inputs}에 유효하지 않습니다. "
|
||||
"{provider_name} 설정을 확인해 주세요."
|
||||
msgstr "필드 \"{field_name}\"은 존재하지 않습니다. 당신의 {provider_name} 설정을 확인"
|
||||
"해 주세요."
|
||||
|
||||
#: pretix/base/datasync/datasync.py:270
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "Field \"{field_name}\" is not valid for {available_inputs}. Please check "
|
||||
#| "your {provider_name} settings."
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Field \"{field_name}\" requires {required_input}, but only got "
|
||||
"{available_inputs}. Please check your {provider_name} settings."
|
||||
msgstr ""
|
||||
"필드 \"{field_name}\"은 {available_inputs}에 유효하지 않습니다. "
|
||||
"{provider_name} 설정을 확인해 주세요."
|
||||
"필드 \"{field_name}\"는 {required_input}을 필요로 하지만, {available_inputs}"
|
||||
"만 받았습니다. 당신의 {provider_name} 설정을 확인해 주세요."
|
||||
|
||||
#: pretix/base/datasync/datasync.py:281
|
||||
#, python-brace-format
|
||||
@@ -848,16 +822,12 @@ msgstr ""
|
||||
"지 않았습니다"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:128
|
||||
#, fuzzy
|
||||
#| msgid "Order positions"
|
||||
msgid "Order position details"
|
||||
msgstr "주문 위치"
|
||||
msgstr "주문 위치 세부 정보"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:129
|
||||
#, fuzzy
|
||||
#| msgid "Attendee email"
|
||||
msgid "Attendee details"
|
||||
msgstr "참석자 이메일"
|
||||
msgstr "참석자 정보들"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:130 pretix/base/exporters/answers.py:66
|
||||
#: pretix/base/models/items.py:1766 pretix/control/navigation.py:172
|
||||
@@ -867,10 +837,8 @@ msgid "Questions"
|
||||
msgstr "질문들"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:131
|
||||
#, fuzzy
|
||||
#| msgid "Product data"
|
||||
msgid "Product details"
|
||||
msgstr "상품 데이터"
|
||||
msgstr "상품 정보"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:132
|
||||
#: pretix/control/templates/pretixcontrol/event/settings.html:279
|
||||
@@ -895,17 +863,13 @@ msgid "Invoice address"
|
||||
msgstr "송장 주소"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:134
|
||||
#, fuzzy
|
||||
#| msgid "Meta information"
|
||||
msgid "Event information"
|
||||
msgstr "메타 정보(데이타에 대한 정보)"
|
||||
msgstr "이벤트 정보"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:135
|
||||
#, fuzzy
|
||||
#| msgid "Send recovery information"
|
||||
msgctxt "subevent"
|
||||
msgid "Event or date information"
|
||||
msgstr "복구 정보를 전송하다"
|
||||
msgstr "이벤트 또는 날짜 정보"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:175
|
||||
#: pretix/base/exporters/orderlist.py:605
|
||||
@@ -930,10 +894,8 @@ msgstr "참석자 이름"
|
||||
#: pretix/base/datasync/sourcefields.py:187
|
||||
#: pretix/base/datasync/sourcefields.py:604
|
||||
#: pretix/base/datasync/sourcefields.py:628
|
||||
#, fuzzy
|
||||
#| msgid "Attendee name"
|
||||
msgid "Attendee"
|
||||
msgstr "참석자 이름"
|
||||
msgstr "참석자"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:207
|
||||
#: pretix/base/exporters/orderlist.py:612 pretix/base/forms/questions.py:687
|
||||
@@ -947,10 +909,8 @@ msgid "Attendee email"
|
||||
msgstr "참석자 이메일"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:219
|
||||
#, fuzzy
|
||||
#| msgid "Attendee email"
|
||||
msgid "Attendee or order email"
|
||||
msgstr "참석자 이메일"
|
||||
msgstr "참석자 또는 구매 이메일"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:232
|
||||
#: pretix/base/exporters/orderlist.py:613 pretix/base/pdf.py:189
|
||||
@@ -963,28 +923,20 @@ msgid "Attendee company"
|
||||
msgstr "참석자 회사"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:241
|
||||
#, fuzzy
|
||||
#| msgid "Attendee address"
|
||||
msgid "Attendee address street"
|
||||
msgstr "참석자 주소"
|
||||
msgstr "참석자 주소 도로명"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:250
|
||||
#, fuzzy
|
||||
#| msgid "Attendee ZIP code"
|
||||
msgid "Attendee address ZIP code"
|
||||
msgstr "참석자 우편번호"
|
||||
msgstr "참석자 주소 우편번호"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:259
|
||||
#, fuzzy
|
||||
#| msgid "Attendee address"
|
||||
msgid "Attendee address city"
|
||||
msgstr "참석자 주소"
|
||||
msgstr "참석자 주소 도시"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:268
|
||||
#, fuzzy
|
||||
#| msgid "Attendee address"
|
||||
msgid "Attendee address country"
|
||||
msgstr "참석자 주소"
|
||||
msgstr "참석자 주소 국가"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:279
|
||||
#: pretix/base/exporters/orderlist.py:653 pretix/base/pdf.py:347
|
||||
@@ -1020,16 +972,12 @@ msgid "Invoice address country"
|
||||
msgstr "송장 주소 국가"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:353
|
||||
#, fuzzy
|
||||
#| msgid "Order total"
|
||||
msgid "Order email"
|
||||
msgstr "주문 합계"
|
||||
msgstr "주문 이메일"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:362
|
||||
#, fuzzy
|
||||
#| msgid "Order time"
|
||||
msgid "Order email domain"
|
||||
msgstr "주문 시간"
|
||||
msgstr "주문 이메일 도메인"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:371
|
||||
#: pretix/base/exporters/invoices.py:203 pretix/base/exporters/invoices.py:332
|
||||
@@ -1061,10 +1009,8 @@ msgid "Order code"
|
||||
msgstr "주문 코드"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:380
|
||||
#, fuzzy
|
||||
#| msgid "Event end date and time"
|
||||
msgid "Event and order code"
|
||||
msgstr "이벤트 종료 날짜 및 시간"
|
||||
msgstr "이벤트와 주문 번호"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:389
|
||||
#: pretix/base/exporters/orderlist.py:263 pretix/base/notifications.py:201
|
||||
@@ -1076,10 +1022,8 @@ msgid "Order total"
|
||||
msgstr "주문 합계"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:398
|
||||
#, fuzzy
|
||||
#| msgid "Product name and variation"
|
||||
msgid "Product and variation name"
|
||||
msgstr "제품명 및 변형"
|
||||
msgstr "제품명 및 변형 이름"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:410 pretix/base/exporters/items.py:57
|
||||
#: pretix/base/exporters/orderlist.py:598
|
||||
@@ -1089,16 +1033,12 @@ msgid "Product ID"
|
||||
msgstr "상품 식별 아이디"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:419
|
||||
#, fuzzy
|
||||
#| msgid "Count add-on products"
|
||||
msgid "Product is admission product"
|
||||
msgstr "추가된 제품을 포함합니다"
|
||||
msgstr "상품은 입장 상품입니다"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:428
|
||||
#, fuzzy
|
||||
#| msgid "Short form"
|
||||
msgid "Event short form"
|
||||
msgstr "짧은 형식"
|
||||
msgstr "이벤트 짧은 형식"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:437 pretix/base/exporters/events.py:57
|
||||
#: pretix/base/exporters/orderlist.py:263
|
||||
@@ -1141,10 +1081,8 @@ msgid "Order code and position number"
|
||||
msgstr "주문 코드 및 위치 번호"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:482
|
||||
#, fuzzy
|
||||
#| msgid "Ticket code"
|
||||
msgid "Ticket price"
|
||||
msgstr "티켓 코드"
|
||||
msgstr "티켓 가격"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:491 pretix/base/notifications.py:204
|
||||
#: pretix/control/forms/filter.py:216 pretix/control/forms/modelimport.py:90
|
||||
@@ -1152,22 +1090,16 @@ msgid "Order status"
|
||||
msgstr "주문 상태"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:500
|
||||
#, fuzzy
|
||||
#| msgid "Device status"
|
||||
msgid "Ticket status"
|
||||
msgstr "기기 상태"
|
||||
msgstr "티켓 상태"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:509
|
||||
#, fuzzy
|
||||
#| msgid "Purchase date and time"
|
||||
msgid "Order date and time"
|
||||
msgstr "구매 날짜 및 시간"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:518
|
||||
#, fuzzy
|
||||
#| msgid "Printing date and time"
|
||||
msgid "Payment date and time"
|
||||
msgstr "인쇄 날짜 및 시간"
|
||||
msgstr "결제 날짜 및 시간"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:527
|
||||
#: pretix/base/exporters/orderlist.py:272
|
||||
@@ -1178,35 +1110,27 @@ msgid "Order locale"
|
||||
msgstr "주문 지역 설정"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:536
|
||||
#, fuzzy
|
||||
#| msgid "Order position"
|
||||
msgid "Order position ID"
|
||||
msgstr "주문 위치"
|
||||
msgstr "주문 위치 ID"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:545
|
||||
#: pretix/base/exporters/orderlist.py:292
|
||||
#, fuzzy
|
||||
#| msgid "Order time"
|
||||
msgid "Order link"
|
||||
msgstr "주문 시간"
|
||||
msgstr "주문 링크"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:560
|
||||
#, fuzzy
|
||||
#| msgid "Ticket design"
|
||||
msgid "Ticket link"
|
||||
msgstr "티켓 디자인"
|
||||
msgstr "티켓 링크"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:578
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid "Check-in list {val}"
|
||||
#, python-brace-format
|
||||
msgid "Check-in datetime on list {}"
|
||||
msgstr "체크인 목록 {val}"
|
||||
msgstr "{} 리스트에 있는 체크인 날짜와 시간"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:590
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid "Question {val}"
|
||||
#, python-brace-format
|
||||
msgid "Question: {name}"
|
||||
msgstr "질문 {val}"
|
||||
msgstr "질문: {name}"
|
||||
|
||||
#: pretix/base/datasync/sourcefields.py:604
|
||||
#: pretix/base/datasync/sourcefields.py:614 pretix/base/settings.py:3642
|
||||
@@ -1227,7 +1151,7 @@ msgstr "이름"
|
||||
msgid "Family name"
|
||||
msgstr "성"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1241,7 +1165,7 @@ msgstr "성"
|
||||
msgid "Default"
|
||||
msgstr "기본 설정"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "로고가 있는 깔끔한 디자인"
|
||||
|
||||
@@ -2422,9 +2346,9 @@ msgid "Fees"
|
||||
msgstr "수수료"
|
||||
|
||||
#: pretix/base/exporters/orderlist.py:277
|
||||
#, fuzzy, python-brace-format
|
||||
#, python-brace-format
|
||||
msgid "Gross at {rate} % tax"
|
||||
msgstr "세율{%}의 세금으로 총합"
|
||||
msgstr "세율 {rate}%의 세금으로 총합"
|
||||
|
||||
#: pretix/base/exporters/orderlist.py:278
|
||||
#, python-brace-format
|
||||
@@ -2472,9 +2396,9 @@ msgid "External customer ID"
|
||||
msgstr "외부고객 아이디"
|
||||
|
||||
#: pretix/base/exporters/orderlist.py:296
|
||||
#, fuzzy, python-brace-format
|
||||
#, python-brace-format
|
||||
msgid "Paid by {method}"
|
||||
msgstr "{방법}에 의해 결제됨"
|
||||
msgstr "{method}에 의해 결제됨"
|
||||
|
||||
#: pretix/base/exporters/orderlist.py:458
|
||||
#: pretix/base/exporters/orderlist.py:914
|
||||
@@ -2677,10 +2601,8 @@ msgid "Check-in lists"
|
||||
msgstr "체크인 목록"
|
||||
|
||||
#: pretix/base/exporters/orderlist.py:672
|
||||
#, fuzzy
|
||||
#| msgid "Additional footer link"
|
||||
msgid "Position order link"
|
||||
msgstr "추가 하단 링크"
|
||||
msgstr "주문 링크 위치"
|
||||
|
||||
#: pretix/base/exporters/orderlist.py:841
|
||||
msgid "Order transaction data"
|
||||
@@ -3294,7 +3216,7 @@ msgstr "로그인 유지"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "이 자격 증명 조합은 우리 시스템에 알려져 있지 않습니다."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "보안상의 이유로 다시 시도하기 전에 5분만 기다려 주세요."
|
||||
@@ -3309,7 +3231,7 @@ msgid ""
|
||||
msgstr "이미 해당 이메일 주소로 등록하셨으니 로그인 양식을 사용해 주세요."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "동일한 비밀번호를 두 번 입력해 주세요"
|
||||
@@ -3319,16 +3241,14 @@ msgstr "동일한 비밀번호를 두 번 입력해 주세요"
|
||||
msgid "Repeat password"
|
||||
msgstr "반복 비밀번호"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr "이메일 주소"
|
||||
msgstr "당신의 이메일 주소"
|
||||
|
||||
#: pretix/base/forms/auth.py:327 pretix/control/forms/orders.py:1041
|
||||
#: pretix/control/templates/pretixcontrol/shredder/download.html:53
|
||||
msgid "Confirmation code"
|
||||
msgstr ""
|
||||
msgstr "확인 코드"
|
||||
|
||||
#: pretix/base/forms/questions.py:137 pretix/base/forms/questions.py:264
|
||||
msgctxt "name_salutation"
|
||||
@@ -3411,14 +3331,12 @@ msgstr ""
|
||||
"야 할 수도 있습니다."
|
||||
|
||||
#: pretix/base/forms/questions.py:1181
|
||||
#, fuzzy
|
||||
#| msgid "Cancellation requested"
|
||||
msgid "No invoice requested"
|
||||
msgstr "취소 요청"
|
||||
msgstr "청구서 요청되지 않음"
|
||||
|
||||
#: pretix/base/forms/questions.py:1183
|
||||
msgid "Invoice transmission method"
|
||||
msgstr ""
|
||||
msgstr "청구서 전송 방식"
|
||||
|
||||
#: pretix/base/forms/questions.py:1329
|
||||
msgid "You need to provide a company name."
|
||||
@@ -3432,21 +3350,20 @@ msgstr "이름을 입력해야 합니다."
|
||||
msgid ""
|
||||
"If you enter an invoice address, you also need to select an invoice "
|
||||
"transmission method."
|
||||
msgstr ""
|
||||
msgstr "당신이 청구서 주소를 입력하신다면, 청구서 수신 방법도 선택하셔야 합니다."
|
||||
|
||||
#: pretix/base/forms/questions.py:1385
|
||||
#, fuzzy
|
||||
#| msgid "The selected media type is not enabled in your organizer settings."
|
||||
msgid ""
|
||||
"The selected transmission type is not available in your country or for your "
|
||||
"type of address."
|
||||
msgstr "선택한 미디어 유형이 정리함 설정에서 활성화되지 않았습니다."
|
||||
msgstr "선택한 전송 유형은 당신의 국가 또는 지역에서 이용하실 수 없습니다."
|
||||
|
||||
#: pretix/base/forms/questions.py:1394
|
||||
msgid ""
|
||||
"The selected type of invoice transmission requires a field that is currently "
|
||||
"not available, please reach out to the organizer."
|
||||
msgstr ""
|
||||
msgstr "선택하신 청구서 전송 유형은 현재 사용할 수 없는 필드의 입력을 필요로 하니, 주"
|
||||
"최자에게 문의 해 주세요."
|
||||
|
||||
#: pretix/base/forms/questions.py:1398
|
||||
msgid "This field is required for the selected type of invoice transmission."
|
||||
@@ -3466,10 +3383,8 @@ msgstr ""
|
||||
"대가 대신 사용됩니다."
|
||||
|
||||
#: pretix/base/forms/user.py:77
|
||||
#, fuzzy
|
||||
#| msgid "Attendee email address"
|
||||
msgid "Change email address"
|
||||
msgstr "참석자 이메일 주소"
|
||||
msgstr "이메일 주소 변경"
|
||||
|
||||
#: pretix/base/forms/user.py:83
|
||||
msgid "Device name"
|
||||
@@ -3487,53 +3402,43 @@ msgstr "Authenticator(인증부호) 애플리케이션이 탑재된 스마트폰
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn 호환 하드웨어 토큰(예: Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr "이메일 주소나 비밀번호를 변경하려면 현재 비밀번호를 입력하세요."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "입력한 현재 비밀번호가 잘못되었습니다."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "현재 비밀번호와 다른 비밀번호를 선택해 주세요."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "현재 비밀번호"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "새 비밀번호"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "새 비밀번호 반복"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
"이 이메일 주소와 관련된 계정이 이미 있습니다. 다른 계정을 선택해 주세요."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr "이메일 주소"
|
||||
msgstr "이전 이메일 주소"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr "이메일 주소"
|
||||
msgstr "새 이메일 주소"
|
||||
|
||||
#: pretix/base/forms/validators.py:51
|
||||
msgid ""
|
||||
@@ -3578,23 +3483,22 @@ msgstr "개별 고객"
|
||||
|
||||
#: pretix/base/invoicing/email.py:50
|
||||
msgid "Email invoice directly to accounting department"
|
||||
msgstr ""
|
||||
msgstr "청구서를 회계 부서로 이메일로 바로 보내기"
|
||||
|
||||
#: pretix/base/invoicing/email.py:51
|
||||
msgid ""
|
||||
"If not selected, the invoice will be sent to you using the email address "
|
||||
"listed above."
|
||||
msgstr ""
|
||||
msgstr "선택되지 않은 경우, 청구서는 위의 이메일 주소를 통해 당신에게 보내질 것 입니"
|
||||
"다."
|
||||
|
||||
#: pretix/base/invoicing/email.py:55
|
||||
#, fuzzy
|
||||
#| msgid "Email address verified"
|
||||
msgid "Email address for invoice"
|
||||
msgstr "이메일 주소 확인"
|
||||
msgstr "청구서용 이메일 주소"
|
||||
|
||||
#: pretix/base/invoicing/email.py:91
|
||||
msgid "PDF via email"
|
||||
msgstr ""
|
||||
msgstr "이메일로 PDF"
|
||||
|
||||
#: pretix/base/invoicing/national.py:37
|
||||
msgctxt "italian_invoice"
|
||||
@@ -3619,11 +3523,9 @@ msgid "Address for certified electronic mail"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/national.py:57
|
||||
#, fuzzy
|
||||
#| msgid "Recipient"
|
||||
msgctxt "italian_invoice"
|
||||
msgid "Recipient code"
|
||||
msgstr "영수증"
|
||||
msgstr "영수증 코드"
|
||||
|
||||
#: pretix/base/invoicing/national.py:81
|
||||
msgctxt "italian_invoice"
|
||||
@@ -3703,10 +3605,9 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
"{from_date}\n"
|
||||
"\n"
|
||||
"{to_date}까지"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -3783,10 +3684,10 @@ msgid "Single price: {net_price} net / {gross_price} gross"
|
||||
msgstr "단일 가격: {net_price} 순 / {gross_price} 총합"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:901
|
||||
#, fuzzy, python-brace-format
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Single price: {price}"
|
||||
msgstr "단일 가격: {가격}"
|
||||
msgstr "단일 가격: {price}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:944 pretix/base/invoicing/pdf.py:949
|
||||
msgctxt "invoice"
|
||||
@@ -3814,12 +3715,10 @@ msgid "Remaining amount"
|
||||
msgstr "잔액"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:1009
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgctxt "invoice"
|
||||
#| msgid "Event date: {date_range}"
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice period: {daterange}"
|
||||
msgstr "이벤트 날짜: {date_range}"
|
||||
msgstr "청구서 기간: {daterange}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:1040
|
||||
msgctxt "invoice"
|
||||
@@ -3842,13 +3741,12 @@ msgid "Included taxes"
|
||||
msgstr "세금 포함"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:1100
|
||||
#, fuzzy, python-brace-format
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid ""
|
||||
"Using the conversion rate of 1:{rate} as published by the {authority} on "
|
||||
"{date}, this corresponds to:"
|
||||
msgstr ""
|
||||
"{날짜}에 {당국}에서 발표한 1:{세율}의 변환율을 사용하면 다음과 같습니다:"
|
||||
msgstr "{date}에 {authority}에서 발표한 1:{rate}의 변환율을 사용하면 다음과 같습니다:"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:1115
|
||||
#, fuzzy, python-brace-format
|
||||
@@ -3856,9 +3754,8 @@ msgctxt "invoice"
|
||||
msgid ""
|
||||
"Using the conversion rate of 1:{rate} as published by the {authority} on "
|
||||
"{date}, the invoice total corresponds to {total}."
|
||||
msgstr ""
|
||||
"{날짜}에 {당국}에서 게시한 1:{세율}의 변환율을 사용하면 송장 총액이 {총합}에 "
|
||||
"해당합니다."
|
||||
msgstr "{date}에 {authority}에서 게시한 1:{rate}의 변환율을 사용하면 송장 총액이 "
|
||||
"{total}에 해당합니다."
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:1129
|
||||
msgid "Default invoice renderer (European-style letter)"
|
||||
@@ -4359,7 +4256,7 @@ msgstr "전원을 끄면 알림을 받을 수 없습니다."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "사용자"
|
||||
|
||||
@@ -7348,7 +7245,7 @@ msgstr "날짜, 월일"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "총합"
|
||||
|
||||
@@ -7360,8 +7257,8 @@ msgstr "보류 중인 금액"
|
||||
msgid "Purchased products"
|
||||
msgstr "구매한 제품"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "주문 세부 정보 보기"
|
||||
@@ -7835,10 +7732,10 @@ msgstr "추가 기능을 포함한 가격"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "도 존"
|
||||
|
||||
@@ -8165,7 +8062,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "경례를 위한 참석자 이름"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "미스터 도"
|
||||
@@ -8940,7 +8837,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "{event}를 주문하셨기 때문에 이 이메일을 받게 되었습니다."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "캘린더 초대"
|
||||
@@ -9369,33 +9266,33 @@ msgstr ""
|
||||
"송금을 다시 시도하는 동안 오류가 발생했습니다. 자세한 내용은 이벤트 주최자에"
|
||||
"게 문의하세요."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "등록 세부 정보 보기"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "샘플 코퍼레이션"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "샘플 입장권"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "여기에 이유가 있는 개별 텍스트를 삽입할 수 있습니다."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "금액이 카드로 청구되었습니다."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "이 은행 계좌로 송금해 주세요: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "이 값은 동적 매개변수에 따라 대체됩니다."
|
||||
@@ -17856,7 +17753,7 @@ msgstr "티켓"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -22017,7 +21914,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -22026,7 +21923,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -22997,7 +22894,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "합계"
|
||||
|
||||
@@ -29598,7 +29495,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -32967,24 +32864,24 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -32992,18 +32889,18 @@ msgstr ""
|
||||
"카트에 있는 상품은 더 이상 예약되지 않습니다. 주문이 가능한 한 주문을 완료할 "
|
||||
"수 있습니다."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "예약 갱신"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "예약 기간"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -34876,6 +34773,11 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr "코소보"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr "이메일 주소나 비밀번호를 변경하려면 현재 비밀번호를 입력하세요."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-10-28 17:00+0000\n"
|
||||
"Last-Translator: Sven Muhlen <sven.muhlen@bnl.etat.lu>\n"
|
||||
"Language-Team: Luxembourgish <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -1168,7 +1168,7 @@ msgstr "Virnumm"
|
||||
msgid "Family name"
|
||||
msgstr "Familljennumm"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1182,7 +1182,7 @@ msgstr "Familljennumm"
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Einfach mat Logo"
|
||||
|
||||
@@ -3249,7 +3249,7 @@ msgstr "Ageloggt bleiwen"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Dës Kombinatioun un Zougangsdonnéeën ass an eisem System net bekannt."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3267,7 +3267,7 @@ msgstr ""
|
||||
"Form."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Gitt wgl. dat selwecht Passwuert an"
|
||||
@@ -3277,7 +3277,7 @@ msgstr "Gitt wgl. dat selwecht Passwuert an"
|
||||
msgid "Repeat password"
|
||||
msgstr "Passwuert widderhuelen"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3451,38 +3451,30 @@ msgstr "Smartphone mat Authenticator-App"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-kompatibelen Hardware-Token (z.B. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Gitt wgl. Äert aktuellt Passwuert an, wann Dir Är E-Mails-Adress oder Är "
|
||||
"Passwuert ännere wëllt."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Dat aktuellt Passwuert, dat Dir aginn hutt, ass net korrekt."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Wielt wgl. e Passwuert, dat anescht ass wéi Äert aktuellt."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Aktuellt Passwuert"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Neit Passwuert"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Neit Passwuert widderhuelen"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3490,13 +3482,13 @@ msgstr ""
|
||||
"Et existéiert schonn e Kont, dee mat dëser E-Mails-Adress verbonnen ass. "
|
||||
"Wielt wgl. eng aner."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "E-Mails-Adress"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3673,7 +3665,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"bis {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4341,7 +4333,7 @@ msgstr "Wann dës Astellung aus ass, kritt Dir keng Notifikatiounen."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Benotzer"
|
||||
|
||||
@@ -7097,7 +7089,7 @@ msgstr "Datumer"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Total (netto)"
|
||||
|
||||
@@ -7109,8 +7101,8 @@ msgstr "Oppene Montant"
|
||||
msgid "Purchased products"
|
||||
msgstr "Bestellte Produiten"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7545,10 +7537,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Maus Ketti"
|
||||
|
||||
@@ -7868,7 +7860,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Här Mustermann"
|
||||
@@ -8562,7 +8554,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Kalennerinvitatioun"
|
||||
@@ -8933,33 +8925,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Beispillsfirma"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16356,7 +16348,7 @@ msgstr "Ticketen"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Steieren"
|
||||
|
||||
@@ -20277,7 +20269,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20286,7 +20278,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21240,7 +21232,7 @@ msgstr "NET SÉCHER"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
@@ -27795,7 +27787,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -31151,24 +31143,24 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -31176,16 +31168,16 @@ msgstr ""
|
||||
"D'Produiten an Ärem Weenche sinn net méi fir Iech reservéiert. Dir kënnt "
|
||||
"d'Bestellung nach ëmmer ofschléissen esou laang wéi si disponibel sinn."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "D'Reservéierung verlängeren"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -33063,6 +33055,13 @@ msgstr "Zougrëff fir ze schreiwen"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Gitt wgl. Äert aktuellt Passwuert an, wann Dir Är E-Mails-Adress oder Är "
|
||||
#~ "Passwuert ännere wëllt."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -1121,7 +1121,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1135,7 +1135,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3153,7 +3153,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3168,7 +3168,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3178,7 +3178,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3327,46 +3327,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3529,7 +3523,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4166,7 +4160,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6893,7 +6887,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6905,8 +6899,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7341,10 +7335,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7662,7 +7656,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8356,7 +8350,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8727,33 +8721,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16144,7 +16138,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20062,7 +20056,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20071,7 +20065,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21025,7 +21019,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27569,7 +27563,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30924,39 +30918,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-02-21 19:00+0000\n"
|
||||
"Last-Translator: anonymous <noreply@weblate.org>\n"
|
||||
"Language-Team: Latvian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1244,7 +1244,7 @@ msgstr "Vārds"
|
||||
msgid "Family name"
|
||||
msgstr "Uzvārds"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1258,7 +1258,7 @@ msgstr "Uzvārds"
|
||||
msgid "Default"
|
||||
msgstr "Pamata"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Vienkāršs ar logo"
|
||||
|
||||
@@ -3367,7 +3367,7 @@ msgstr "Palikt savā lietotāja kontā"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Šī akreditācijas datu kombinācija mūsu sistēmai nav zināma."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Drošibas apsvērumu dēļ lūgums uzgaidīt 5min pirms mēģināt vēlreiz."
|
||||
@@ -3384,7 +3384,7 @@ msgstr ""
|
||||
"pieslēgšanās formu."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Lūgums ievadīt to pašu paroli divas reizes"
|
||||
@@ -3394,7 +3394,7 @@ msgstr "Lūgums ievadīt to pašu paroli divas reizes"
|
||||
msgid "Repeat password"
|
||||
msgstr "Atkārtojiet paroli"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3559,54 +3559,42 @@ msgstr "Viedtālrunis ar Autentifikācijas aplikāciju"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Ar WebAuthn saderīgs aparatūras marķieris (piemēram, Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Lūdzu, ievadiet savu pašreizējo paroli, ja vēlaties mainīt savu e-pasta "
|
||||
"adresi vai paroli."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Ievadītā parole nebija pareiza."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Lūgums izvēlēties atšķirīgu paroli no pašreizējās."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Jūsu šī brīža parole"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Jaunā parole"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Atkārtot jaunt paroli"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr "E-pasts jau ir piesaistīts kontam. Lūgums izvēlēties citu."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "E-pasta adrese"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3782,7 +3770,7 @@ msgstr ""
|
||||
"No {from_date}\n"
|
||||
"līdz {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4453,7 +4441,7 @@ msgstr "Ja izslēgts, jūs nesaņemsiet nekādus paziņojumus."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Lietotājs/-a"
|
||||
|
||||
@@ -7530,7 +7518,7 @@ msgstr "Datumi"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Neto kopsumma"
|
||||
|
||||
@@ -7542,8 +7530,8 @@ msgstr "Neapmaksātā summa"
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Skatīt pasūtījuma informāciju"
|
||||
@@ -8026,10 +8014,10 @@ msgstr "Cena iekļaujot papildinājumus"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Jānis Liepiņš"
|
||||
|
||||
@@ -8384,7 +8372,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Apmeklētāju vārdi"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Liepiņa k-gs"
|
||||
@@ -9201,7 +9189,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Jūs saņemat šo epastu, jo veicāt pasūtījumu uz {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "Calendar invites"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -9640,33 +9628,33 @@ msgstr ""
|
||||
"Mēģinot nosūtīt naudu jums, radās kļūda. Lai iegūtu papildinformāciju, "
|
||||
"lūdzu, sazinieties ar pasākuma rīkotāju."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Skatīt reģistrācijas informāciju"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Uzņēmuma nosaukums"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Ieejas biļetes paraugs"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Šeit var ievietot atsevišķu tekstu ar iemeslu."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Šī summa ir noņemta no jūsu kartes."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Lūdzu pārskaitiet naudu uz sekojošu bankas kontu: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -17639,7 +17627,7 @@ msgstr "Biļetes"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Nodokļi"
|
||||
|
||||
@@ -21770,7 +21758,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -21779,7 +21767,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "iesk. %(rate)s%% %(taxname)s"
|
||||
@@ -22767,7 +22755,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Kopā"
|
||||
|
||||
@@ -29712,7 +29700,7 @@ msgid "Upload time"
|
||||
msgstr "Lejupielādējiet biļeti"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33543,7 +33531,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Šī brīža vērtība"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, fuzzy, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -33551,19 +33539,19 @@ msgstr[0] "0 produktu1 produkts%(num)s produkti"
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, fuzzy, python-format
|
||||
#| msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "iesk. %(rate)s%% %(taxname)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
#| msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Jūsu grozā esošās preces jums tiek rezervētas uz %(minutes)s minūtēm."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -33571,20 +33559,20 @@ msgstr ""
|
||||
"Jūsu grozā esošās preces jums vairs nav rezervētas. Jūs joprojām variet "
|
||||
"pabeigt pasūtījumu, kamēr tās ir pieejamas."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Pasākuma apraksts"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Pasākuma apraksts"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -35722,6 +35710,17 @@ msgstr "Rediģēšanas režīma piekļuve"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Lūdzu, ievadiet savu pašreizējo paroli, ja vēlaties mainīt savu e-pasta "
|
||||
#~ "adresi vai paroli."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are receiving this email because you placed an order for the "
|
||||
#~ "following event:"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -1118,7 +1118,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1132,7 +1132,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3150,7 +3150,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3165,7 +3165,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3175,7 +3175,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,46 +3324,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3526,7 +3520,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4163,7 +4157,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6890,7 +6884,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6902,8 +6896,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7338,10 +7332,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7659,7 +7653,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8353,7 +8347,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8724,33 +8718,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16141,7 +16135,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20055,7 +20049,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20064,7 +20058,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21018,7 +21012,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27558,7 +27552,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30912,39 +30906,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2024-05-10 15:47+0000\n"
|
||||
"Last-Translator: Martin Gross <gross@rami.io>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -1225,7 +1225,7 @@ msgstr "Fornavn"
|
||||
msgid "Family name"
|
||||
msgstr "Etternavn"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1239,7 +1239,7 @@ msgstr "Etternavn"
|
||||
msgid "Default"
|
||||
msgstr "standard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Enkel med logo"
|
||||
|
||||
@@ -3312,7 +3312,7 @@ msgstr "Ikke logg meg ut"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Denne kombinasjonen av passord er ikke kjent for systemet vårt."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Av sikkerhetsgrunner, vennligst vent 5 minutter før du prøver igjen."
|
||||
@@ -3328,7 +3328,7 @@ msgstr ""
|
||||
"Du har allerede registrert deg med den e-postadressen, vennligst logg inn."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Vennligst skriv inn det samme passordet to ganger"
|
||||
@@ -3338,7 +3338,7 @@ msgstr "Vennligst skriv inn det samme passordet to ganger"
|
||||
msgid "Repeat password"
|
||||
msgstr "Gjenta passord"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3511,43 +3511,31 @@ msgstr "Smarttelefon med Authenticator-applikasjonen"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-kompatibel maskinvaretoken (f.eks. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Vennligst oppgi nåværende passord dersom du ønsker å endre e-postadresse "
|
||||
"eller passord."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Passordet du skrev inn var ikke riktig."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
"Vennligst velg et passord som er forskjellig fra det du allerede bruker."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Din nåværende passord"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nytt passord"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Gjenta nytt passord"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3555,13 +3543,13 @@ msgstr ""
|
||||
"Det finnes allerede en konto knyttet til denne e-postadressen. Vennligst "
|
||||
"velg en annen."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Epostadresse"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3744,7 +3732,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"til {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4403,7 +4391,7 @@ msgstr "Hvis den er slått av, vil du ikke motta noen varsler."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Bruker"
|
||||
|
||||
@@ -7582,7 +7570,7 @@ msgstr "Datoer"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Netto total"
|
||||
|
||||
@@ -7594,8 +7582,8 @@ msgstr "Uavklart beløp"
|
||||
msgid "Purchased products"
|
||||
msgstr "Kjøpte produkter"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Vis ordredetaljer"
|
||||
@@ -8083,10 +8071,10 @@ msgstr "Pris inkludert tilleggskomponenter"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8457,7 +8445,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Deltakernavn: {part}"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Mr Doe"
|
||||
@@ -9244,7 +9232,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Du mottar denne e-posten fordi du har bestilt {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Kalenderinvitasjon"
|
||||
@@ -9710,33 +9698,33 @@ msgstr ""
|
||||
"Det oppstod en feil mens vi prøvde å sende pengene tilbake til deg. "
|
||||
"Vennligst ta kontakt med arrangementets arrangør for ytterligere informasjon."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Vis registreringsdetaljer"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Eksempel organisasjon"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Eksempel Adgang Billett"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Her kan det settes inn en individuell tekst med begrunnelse."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Beløpet har blitt trukket fra ditt kort."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Vennligst overfør penger til denne bankkontoen: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Denne verdien vil bli erstattet basert på dynamiske parametere."
|
||||
@@ -18518,7 +18506,7 @@ msgstr "Billetter"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Skatter"
|
||||
|
||||
@@ -23040,7 +23028,7 @@ msgstr "Kan kun kjøpes ved bruk av en kupong."
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>pluss</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -23049,7 +23037,7 @@ msgstr "<strong>pluss</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "inkl. %(rate)s%% %(taxname)s"
|
||||
@@ -24135,7 +24123,7 @@ msgstr "USIKKER"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Totalt"
|
||||
|
||||
@@ -31678,7 +31666,7 @@ msgid "Upload time"
|
||||
msgstr "Opplastningstid"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -35509,24 +35497,24 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Nåværende verdi"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Én produkt"
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "inkludert %(tax_sum)s i skatter"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Gjenstandene i handlekurven din holdes av i %(minutes)s minutter."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -35534,20 +35522,20 @@ msgstr ""
|
||||
"Varene i handlekurven din er ikke lenger reservert for deg. Du kan fortsatt "
|
||||
"fullføre bestillingen din så lenge de er tilgjengelige."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Reservasjonsperiode"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Oversikt over dine bestilte produkter."
|
||||
|
||||
@@ -37683,6 +37671,17 @@ msgstr "Skriverettighet"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Vennligst oppgi nåværende passord dersom du ønsker å endre e-postadresse "
|
||||
#~ "eller passord."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-10-26 18:00+0000\n"
|
||||
"Last-Translator: Jan Van Haver <jan.van.haver@gmail.com>\n"
|
||||
"Language-Team: Dutch <https://translate.pretix.eu/projects/pretix/pretix/nl/"
|
||||
@@ -1173,7 +1173,7 @@ msgstr "Voornaam"
|
||||
msgid "Family name"
|
||||
msgstr "Achternaam"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1187,7 +1187,7 @@ msgstr "Achternaam"
|
||||
msgid "Default"
|
||||
msgstr "Standaard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Simpel met logo"
|
||||
|
||||
@@ -3254,7 +3254,7 @@ msgstr ""
|
||||
"Deze combinatie van gebruikersnaam en wachtwoord is niet bekend in onze "
|
||||
"database."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3272,7 +3272,7 @@ msgstr ""
|
||||
"U bent al geregistreerd met dit e-mailadres, gebruik het inlogformulier."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Voer twee keer hetzelfde wachtwoord in"
|
||||
@@ -3282,7 +3282,7 @@ msgstr "Voer twee keer hetzelfde wachtwoord in"
|
||||
msgid "Repeat password"
|
||||
msgstr "Herhaal wachtwoord"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Your address"
|
||||
msgid "Your email address"
|
||||
@@ -3456,38 +3456,30 @@ msgstr "Smartphone met de Authenticator-applicatie"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-compatibel hardware-token (bijvoorbeeld Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Voer uw huidige wachtwoord in als u uw e-mailadres of wachtwoord wilt "
|
||||
"wijzigen."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Het huidige wachtwoord dat u heeft ingevoerd is niet correct."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Kies een wachtwoord dat niet hetzelfde is als het huidige alstublieft."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Uw huidige wachtwoord"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nieuw wachtwoord"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Herhaal nieuw wachtwoord"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3495,13 +3487,13 @@ msgstr ""
|
||||
"Er is al een account gekoppeld aan dit e-mailadres. Kies een ander e-"
|
||||
"mailadres."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "E-mailadres"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3677,7 +3669,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"tot {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4349,7 +4341,7 @@ msgstr "Als dit is uitgeschakeld ontvangt u geen enkele melding."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
@@ -7470,7 +7462,7 @@ msgstr "Datums"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Netto totaal"
|
||||
|
||||
@@ -7482,8 +7474,8 @@ msgstr "Openstaand bedrag"
|
||||
msgid "Purchased products"
|
||||
msgstr "Gekochte producten"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Bekijk bestelgegevens"
|
||||
@@ -7978,10 +7970,10 @@ msgstr "Prijs inclusief add-ons en bundel van producten"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8308,7 +8300,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Naam aanwezige voor begroeting"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Meneer Janssen"
|
||||
@@ -9094,7 +9086,7 @@ msgstr ""
|
||||
"U ontvangt deze e-mail omdat u een bestelling geplaatst heeft voor het "
|
||||
"evenement {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Agenda-uitnodiging"
|
||||
@@ -9557,33 +9549,33 @@ msgstr ""
|
||||
"Er is iets misgegaan toen we het geld naar u over probeerden te maken. Neem "
|
||||
"contact op met de organisator van het evenement voor meer informatie."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Bekijk aanmeldingsgegevens"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Voorbeeldbedrijf"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Voorbeeldtoegangsbewijs"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Een individuele tekst met een reden kan hier worden ingevoerd."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Het bedrag is van uw kaart afgeschreven."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Maak het geld over naar deze bankrekening: NL13 TEST 0123 4567 89"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -18338,7 +18330,7 @@ msgstr "Tickets"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Belastingen"
|
||||
|
||||
@@ -22807,7 +22799,7 @@ msgstr "Kan alleen worden gekocht met een voucher"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22816,7 +22808,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "incl. %(rate)s%% %(taxname)s"
|
||||
@@ -23906,7 +23898,7 @@ msgstr "ONVEILIG"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Totaal"
|
||||
|
||||
@@ -31275,7 +31267,7 @@ msgid "Upload time"
|
||||
msgstr "Uploadtijd"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -35013,26 +35005,26 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Huidige waarde:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Een product"
|
||||
msgstr[1] "%(num)s producten"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "incl. %(tax_sum)s belasting"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"De producten in uw winkelwagen zijn nog %(minutes)s minuten voor u "
|
||||
"gereserveerd."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -35040,16 +35032,16 @@ msgstr ""
|
||||
"De items in uw winkelwagen zijn niet meer voor u gereserveerd. U kunt uw "
|
||||
"bestelling nog afronden, zolang de producten nog beschikbaar zijn."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "Vernieuw reservering"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Reservering vernieuwd"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Overzicht van uw bestelde producten."
|
||||
|
||||
@@ -37148,6 +37140,13 @@ msgstr "Schrijftoegang"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Voer uw huidige wachtwoord in als u uw e-mailadres of wachtwoord wilt "
|
||||
#~ "wijzigen."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2024-02-13 16:00+0000\n"
|
||||
"Last-Translator: Wessel Stam <info@wesselstam.nl>\n"
|
||||
"Language-Team: Dutch (informal) <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -1233,7 +1233,7 @@ msgstr "Voornaam"
|
||||
msgid "Family name"
|
||||
msgstr "Achternaam"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1247,7 +1247,7 @@ msgstr "Achternaam"
|
||||
msgid "Default"
|
||||
msgstr "Standaard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Simpel met logo"
|
||||
|
||||
@@ -3351,7 +3351,7 @@ msgstr ""
|
||||
"Deze combinatie van gebruikersnaam en wachtwoord is niet bekend in onze "
|
||||
"database."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3368,7 +3368,7 @@ msgid ""
|
||||
msgstr "Er is al een account met dit e-mailadres, gebruik het inlogformulier."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Voer twee keer hetzelfde wachtwoord in"
|
||||
@@ -3378,7 +3378,7 @@ msgstr "Voer twee keer hetzelfde wachtwoord in"
|
||||
msgid "Repeat password"
|
||||
msgstr "Herhaal wachtwoord"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3546,42 +3546,30 @@ msgstr "Smartphone met de Authenticator-applicatie"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-compatibel hardware-token (bijvoorbeeld Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Voer je huidige wachtwoord in als je je e-mailadres of wachtwoord wilt "
|
||||
"wijzigen."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Het huidige wachtwoord dat je hebt ingevoerd is niet correct."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Gebruik een wachtwoord dat anders is dan je huidige wachtwoord."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Je huidige wachtwoord"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nieuw wachtwoord"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Herhaal nieuw wachtwoord"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3589,13 +3577,13 @@ msgstr ""
|
||||
"Er is al een account gekoppeld aan dit e-mailadres. Kies een ander e-"
|
||||
"mailadres."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "E-mailadres"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3774,7 +3762,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"tot {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4452,7 +4440,7 @@ msgstr "Als dit is uitgeschakeld ontvang je geen enkele melding."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
@@ -7663,7 +7651,7 @@ msgstr "Datums"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Netto totaal"
|
||||
|
||||
@@ -7675,8 +7663,8 @@ msgstr "Openstaand bedrag"
|
||||
msgid "Purchased products"
|
||||
msgstr "Gekochte producten"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Bekijk bestelgegevens"
|
||||
@@ -8185,10 +8173,10 @@ msgstr "Prijs inclusief add-ons"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8549,7 +8537,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Namen van aanwezigen"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Meneer Janssen"
|
||||
@@ -9405,7 +9393,7 @@ msgstr ""
|
||||
"Je ontvangt deze e-mail omdat je een bestelling geplaatst hebt voor het "
|
||||
"evenement {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "resend invite"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -9901,33 +9889,33 @@ msgstr ""
|
||||
"Er is iets misgegaan toen we het geld naar je over probeerden te maken. Neem "
|
||||
"contact op met de organisator van het evenement voor meer informatie."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Bekijk aanmeldingsgegevens"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Voorbeeldbedrijf"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Voorbeeldtoegangsbewijs"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Een individuele tekst met een reden kan hier worden ingevoerd."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Het bedrag is van uw kaart afgeschreven."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Maak het geld over naar deze bankrekening: NL13 TEST 0123 4567 89"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -19020,7 +19008,7 @@ msgstr "Kaartjes"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Belastingen"
|
||||
|
||||
@@ -23586,7 +23574,7 @@ msgstr "Kan alleen worden gekocht met een voucher"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -23595,7 +23583,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "incl. %(rate)s%% %(taxname)s"
|
||||
@@ -24688,7 +24676,7 @@ msgstr "ONVEILIG"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Totaal"
|
||||
|
||||
@@ -32314,7 +32302,7 @@ msgid "Upload time"
|
||||
msgstr "Downloadtijd"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -36335,19 +36323,19 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Huidige waarde"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Een product"
|
||||
msgstr[1] "%(num)s producten"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "incl. %(tax_sum)s belasting"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
#| msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
@@ -36355,7 +36343,7 @@ msgstr ""
|
||||
"De items in je winkelwagen zijn voor je gereserveerd voor %(minutes)s "
|
||||
"minuten."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
#, fuzzy
|
||||
#| msgid "The items in your cart are no longer reserved for you."
|
||||
msgid ""
|
||||
@@ -36363,20 +36351,20 @@ msgid ""
|
||||
"complete your order as long as they’re available."
|
||||
msgstr "De items in je winkelwagen zijn niet meer voor je gereserveerd."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Productomschrijving"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Reserveerperiode"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -38652,6 +38640,17 @@ msgstr "Schrijftoegang"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Voer je huidige wachtwoord in als je je e-mailadres of wachtwoord wilt "
|
||||
#~ "wijzigen."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-10-04 19:00+0000\n"
|
||||
"Last-Translator: Sebastian Bożek <sebastian@log-mar.pl>\n"
|
||||
"Language-Team: Polish <https://translate.pretix.eu/projects/pretix/pretix/pl/"
|
||||
@@ -1230,7 +1230,7 @@ msgstr "Imię"
|
||||
msgid "Family name"
|
||||
msgstr "Nazwisko"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1244,7 +1244,7 @@ msgstr "Nazwisko"
|
||||
msgid "Default"
|
||||
msgstr "Domyślne"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Prosty z logo"
|
||||
|
||||
@@ -3318,7 +3318,7 @@ msgstr "Nie wylogowywuj mnie"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Login lub hasło jest niepoprawne."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Ze względów bezpieczeństwa możesz zalogować się dopiero za pięć minut."
|
||||
@@ -3335,7 +3335,7 @@ msgstr ""
|
||||
"formularzu logowania."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Proszę wpisać to samo hasło dwukrotnie"
|
||||
@@ -3345,7 +3345,7 @@ msgstr "Proszę wpisać to samo hasło dwukrotnie"
|
||||
msgid "Repeat password"
|
||||
msgstr "Powtórz hasło"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3517,49 +3517,43 @@ msgstr "Smartfon z aplikacją Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Token hardware'owy kompatybilny z WebAuthn (np. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr "Proszę wprowadzić obecne hasło w celu zmiany adresu email lub hasła."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Wprowadzone obecne hasło jest nieprawidłowe."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Nowe hasło nie może być identyczne jak obecne."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Obecne hasło"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nowe hasło"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Powtórz nowe hasło"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
"Istnieje już konto z podanym adresem email. Proszę wprowadzić inny adres."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Adres email"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3745,7 +3739,7 @@ msgstr ""
|
||||
"od {from_date}\n"
|
||||
"do {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4400,7 +4394,7 @@ msgstr "Jeśli wyłączone, nie będą miały miejsca żadne powiadomienia."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
@@ -7503,7 +7497,7 @@ msgstr "Daty"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Razem netto"
|
||||
|
||||
@@ -7515,8 +7509,8 @@ msgstr "Oczekująca kwota"
|
||||
msgid "Purchased products"
|
||||
msgstr "Zakupione produkty"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Zobacz szczegóły zamówienia"
|
||||
@@ -8011,10 +8005,10 @@ msgstr "Cena, w tym produkty dodatkowe"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Jan Nowak"
|
||||
|
||||
@@ -8341,7 +8335,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Imię i nazwisko uczestnika do powitania"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Pan Nowak"
|
||||
@@ -9134,7 +9128,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Otrzymujesz ten e-mail, ponieważ złożyłeś zamówienie na {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Zaproszenie do kalendarza"
|
||||
@@ -9580,34 +9574,34 @@ msgstr ""
|
||||
"Wystąpił błąd podczas próby odesłania pieniędzy. Skontaktuj się z "
|
||||
"organizatorem wydarzenia w celu uzyskania dalszych informacji."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Wyświetl szczegóły rejestracji"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Przykładowa Organizacja"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Przykładowy bilet wstępu"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Indywidualny powód może zostać zdefiniowany w tym miejscu."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Niniejsza kwota została pobrana z Twojej karty."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Proszę przelej pieniądze na następujące konto bankowe: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Wartość ta zostanie zastąpiona na podstawie parametrów dynamicznych."
|
||||
@@ -18338,7 +18332,7 @@ msgstr "Bilety"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Podatki"
|
||||
|
||||
@@ -22801,7 +22795,7 @@ msgstr "Można kupić tylko przy użyciu vouchera"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22810,7 +22804,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "w tym %(taxname)s %(rate)s%%"
|
||||
@@ -23898,7 +23892,7 @@ msgstr "NIEBEZPIECZNY"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Razem"
|
||||
|
||||
@@ -31249,7 +31243,7 @@ msgid "Upload time"
|
||||
msgstr "Czas przesyłania"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -35016,7 +35010,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Obecna wartość:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -35024,17 +35018,17 @@ msgstr[0] "Jeden produkt"
|
||||
msgstr[1] "%(num)s produkty"
|
||||
msgstr[2] "%(num)s produktów"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "w tym %(tax_sum)s podatku"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Produkty w koszyku są zarezerwowanie przez %(minutes)s minut."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -35042,20 +35036,20 @@ msgstr ""
|
||||
"Przedmioty w koszyku nie są już zarezerwowane. Nadal możesz dokończyć "
|
||||
"zamówienie, jeżeli produkty są jeszcze dostępne."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Opis wydarzenia"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Okres rezerwacji"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Podsumowanie twoich zamówionych produktów."
|
||||
|
||||
@@ -37143,6 +37137,12 @@ msgstr "Dostęp do zapisu"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Proszę wprowadzić obecne hasło w celu zmiany adresu email lub hasła."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 01:00+0000\n"
|
||||
"Last-Translator: Serge Bazanski <sergiusz@q3k.org>\n"
|
||||
"Language-Team: Polish (informal) <https://translate.pretix.eu/projects/"
|
||||
@@ -1219,7 +1219,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1233,7 +1233,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr "Domyślne"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Proste z logo"
|
||||
|
||||
@@ -3304,7 +3304,7 @@ msgstr "Pamiętaj o mnie"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Te dane logowanie nie są nam znane."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Z powodów bezpieczeństwa poczekaj 5 minut przed kolejną próbą."
|
||||
@@ -3320,7 +3320,7 @@ msgstr ""
|
||||
"Zarejestrowano już konto z tym adresem email, użyj formularzu logowania."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Wpisz to samo hasło dwa razy"
|
||||
@@ -3330,7 +3330,7 @@ msgstr "Wpisz to samo hasło dwa razy"
|
||||
msgid "Repeat password"
|
||||
msgstr "Powtórz hasło"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3497,48 +3497,42 @@ msgstr "Smartfon z aplikacją Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Token sprzętowy kompatybilny z WebAuthn (np. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr "Wpisz aktualne hasło jeśli chcesz zmienić adres email albo hasło."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Podane aktualne hasło nie jest poprawne."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Podaj hasło inne niż aktualne."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Twoje obecne hasło"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nowe hasło"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Powtórz nowe hasło"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr "Konto z tym adresem email już istnieje. Wybierz inny."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Adres email"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3715,7 +3709,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"do {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4367,7 +4361,7 @@ msgstr "Gdy wyłączone nie dostaniesz żadnych powiadomień."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Użytkownik"
|
||||
|
||||
@@ -7184,7 +7178,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -7196,8 +7190,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7634,10 +7628,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7957,7 +7951,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8659,7 +8653,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -9031,33 +9025,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16482,7 +16476,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20428,7 +20422,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20437,7 +20431,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21393,7 +21387,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27962,7 +27956,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -31343,7 +31337,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -31351,34 +31345,34 @@ msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Registration date"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Data rejestracji"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -33250,6 +33244,11 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr "Wpisz aktualne hasło jeśli chcesz zmienić adres email albo hasło."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-06-05 04:00+0000\n"
|
||||
"Last-Translator: Francisco Rosa <francisco@comm7.net>\n"
|
||||
"Language-Team: Portuguese <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -1213,7 +1213,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1227,7 +1227,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr "Padrão"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Simples com logo"
|
||||
|
||||
@@ -3301,7 +3301,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3316,7 +3316,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3326,7 +3326,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3479,48 +3479,42 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Endereço de e-mail"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3689,7 +3683,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4332,7 +4326,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
@@ -7105,7 +7099,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -7117,8 +7111,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7554,10 +7548,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -7890,7 +7884,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Nome do participante: {part}"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Mr Doe"
|
||||
@@ -8592,7 +8586,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
@@ -8968,34 +8962,34 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Amostra de Corporação"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Amostra de bilhete de admissão"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Um texto individual com um motivo pode ser inserido aqui."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "O valor foi creditado no seu cartão."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Por favor transfira o dinheiro para essa conta bancária: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16528,7 +16522,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20498,7 +20492,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20507,7 +20501,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21466,7 +21460,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
@@ -28126,7 +28120,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -31528,43 +31522,43 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "ID do Cliente"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Os artigos no seu carrinho estão reservados para você por %(minutes)s "
|
||||
"minutos."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
msgid "Renew reservation"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"PO-Revision-Date: 2025-09-10 05:00+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-12-04 18:00+0000\n"
|
||||
"Last-Translator: Renne Rocha <renne@rocha.dev.br>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.pretix.eu/projects/"
|
||||
"pretix/pretix/pt_BR/>\n"
|
||||
@@ -17,7 +17,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.13.2\n"
|
||||
"X-Generator: Weblate 5.14.3\n"
|
||||
|
||||
#: pretix/_base_settings.py:87
|
||||
msgid "English"
|
||||
@@ -1177,7 +1177,7 @@ msgstr "Nome"
|
||||
msgid "Family name"
|
||||
msgstr "Sobrenome"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1191,7 +1191,7 @@ msgstr "Sobrenome"
|
||||
msgid "Default"
|
||||
msgstr "Padrão"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Simples com logo"
|
||||
|
||||
@@ -3259,7 +3259,7 @@ msgstr "Mantenha-me conectado"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Esta combinação de credenciais não é conhecida pelo nosso sistema."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Por motivos de segurança, aguarde 5 minutos antes de tentar novamente."
|
||||
@@ -3275,7 +3275,7 @@ msgstr ""
|
||||
"Este email já foi cadastrado. Por favor, utilize o formulário de login."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Informe a senha novamente"
|
||||
@@ -3285,11 +3285,9 @@ msgstr "Informe a senha novamente"
|
||||
msgid "Repeat password"
|
||||
msgstr "Repita a senha"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr "Endereço de email"
|
||||
msgstr "Seu endereço de e-mail"
|
||||
|
||||
#: pretix/base/forms/auth.py:327 pretix/control/forms/orders.py:1041
|
||||
#: pretix/control/templates/pretixcontrol/shredder/download.html:53
|
||||
@@ -3433,10 +3431,8 @@ msgstr ""
|
||||
"as exibições de eventos, o fuso horário do evento é usado."
|
||||
|
||||
#: pretix/base/forms/user.py:77
|
||||
#, fuzzy
|
||||
#| msgid "Attendee email address"
|
||||
msgid "Change email address"
|
||||
msgstr "Email do participante"
|
||||
msgstr "Alterar endereço de e-mail"
|
||||
|
||||
#: pretix/base/forms/user.py:83
|
||||
msgid "Device name"
|
||||
@@ -3454,37 +3450,30 @@ msgstr "Smartphone com o aplicativo de check-in"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Token de hardware compatível com o WebAuthn (por exemplo, Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Digite sua senha atual se quiser alterar seu endereço de email ou senha."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "A senha atual que você digitou estava incorreta."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Escolha uma senha diferente da atual."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Senha atual"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nova senha"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Digite a senha novamente"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3492,17 +3481,13 @@ msgstr ""
|
||||
"Já existe uma conta associada a este endereço de email. Por favor, escolha "
|
||||
"um diferente."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr "Endereço de email"
|
||||
msgstr "Endereço de e-mail antigo"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr "Endereço de email"
|
||||
msgstr "Endereço de e-mail novo"
|
||||
|
||||
#: pretix/base/forms/validators.py:51
|
||||
msgid ""
|
||||
@@ -3547,22 +3532,17 @@ msgid "Individual customer"
|
||||
msgstr "Cliente pessoa física"
|
||||
|
||||
#: pretix/base/invoicing/email.py:50
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "To send the invoice directly to your accounting department, please enter "
|
||||
#| "their email address:"
|
||||
msgid "Email invoice directly to accounting department"
|
||||
msgstr ""
|
||||
"Para enviar a fatura diretamente ao seu departamento de contabilidade, "
|
||||
"insira o endereço de e-mail:"
|
||||
"Enviar e-mail com a fatura diretamente para departamento de contabilidade"
|
||||
|
||||
#: pretix/base/invoicing/email.py:51
|
||||
#, fuzzy
|
||||
#| msgid "The invoice was sent to the designated email address."
|
||||
msgid ""
|
||||
"If not selected, the invoice will be sent to you using the email address "
|
||||
"listed above."
|
||||
msgstr "A fatura foi enviada para o endereço de e-mail designado."
|
||||
msgstr ""
|
||||
"Se não selecionado, a fatura será enviada para o endereço de e-mail listado "
|
||||
"a seguir."
|
||||
|
||||
#: pretix/base/invoicing/email.py:55
|
||||
msgid "Email address for invoice"
|
||||
@@ -3677,7 +3657,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"até {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -3785,12 +3765,10 @@ msgid "Remaining amount"
|
||||
msgstr "Valor restante"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:1009
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgctxt "invoice"
|
||||
#| msgid "Event date: {date_range}"
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice period: {daterange}"
|
||||
msgstr "Data do evento: {date_range}"
|
||||
msgstr "Período da fatura: {daterange}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:1040
|
||||
msgctxt "invoice"
|
||||
@@ -3875,12 +3853,9 @@ msgid "Peppol participant ID"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/peppol.py:170
|
||||
#, fuzzy
|
||||
#| msgctxt "italian_invoice"
|
||||
#| msgid "Fiscal code"
|
||||
msgctxt "peppol_invoice"
|
||||
msgid "Visual copy"
|
||||
msgstr "Código fiscal"
|
||||
msgstr "Cópia visual"
|
||||
|
||||
#: pretix/base/invoicing/peppol.py:175
|
||||
msgctxt "peppol_invoice"
|
||||
@@ -4335,7 +4310,7 @@ msgstr "Se desligado, você não receberá notificações."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Usuário"
|
||||
|
||||
@@ -4364,10 +4339,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/models/auth.py:392
|
||||
#, fuzzy
|
||||
#| msgid "Confirmation code"
|
||||
msgid "pretix confirmation code"
|
||||
msgstr "Código de confirmação"
|
||||
msgstr "código de confirmação do pretix"
|
||||
|
||||
#: pretix/base/models/auth.py:435
|
||||
#: pretix/control/templates/pretixcontrol/auth/forgot.html:7
|
||||
@@ -6305,9 +6278,6 @@ msgstr ""
|
||||
"insira um valor possível por linha."
|
||||
|
||||
#: pretix/base/models/items.py:2310
|
||||
#, fuzzy
|
||||
#| msgctxt "timeframe"
|
||||
#| msgid "Start"
|
||||
msgid "Start"
|
||||
msgstr "Início"
|
||||
|
||||
@@ -7424,7 +7394,7 @@ msgstr "Datas"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Total líquido"
|
||||
|
||||
@@ -7436,8 +7406,8 @@ msgstr "Valor pendente"
|
||||
msgid "Purchased products"
|
||||
msgstr "Produtos comprados"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Exibir detalhes do pedido"
|
||||
@@ -7919,10 +7889,8 @@ msgid "123.45 EUR"
|
||||
msgstr "123.45 BRL"
|
||||
|
||||
#: pretix/base/pdf.py:166
|
||||
#, fuzzy
|
||||
#| msgid "Price including add-ons"
|
||||
msgid "Price including bundled products"
|
||||
msgstr "Preço incluindo complementos"
|
||||
msgstr "Preços incluindo produtos empacotados"
|
||||
|
||||
#: pretix/base/pdf.py:175
|
||||
#, fuzzy
|
||||
@@ -7932,10 +7900,10 @@ msgstr "Preço incluindo complementos"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "João Silva"
|
||||
|
||||
@@ -8262,7 +8230,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Nome do participante para saudação"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Sr Silva"
|
||||
@@ -9047,7 +9015,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Você está recebendo este email porque fez um pedido para {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Convite de calendário"
|
||||
@@ -9497,34 +9465,34 @@ msgstr ""
|
||||
"Houve um erro ao tentar enviar o dinheiro de volta para você. Entre em "
|
||||
"contato com o organizador do evento para obter mais informações."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Ver detalhes de registro"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Exemplo de organização"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Exemplo de ingresso de entrada"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Um texto individual com o motivo pode ser inserido aqui."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "O valor foi cobrado no seu cartão."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Por favor transfira dinheiro para essa conta bancária: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Este valor será substituído baseado em parâmetros dinâmicos."
|
||||
@@ -9885,10 +9853,8 @@ msgid "Require a phone number per order"
|
||||
msgstr "Exigir um número de telefone por pedido"
|
||||
|
||||
#: pretix/base/settings.py:482
|
||||
#, fuzzy
|
||||
#| msgid "including all taxes"
|
||||
msgid "Rounding of taxes"
|
||||
msgstr "incluindo todos os impostos"
|
||||
msgstr "Arredondamento dos impostos"
|
||||
|
||||
#: pretix/base/settings.py:486
|
||||
msgid ""
|
||||
@@ -10431,18 +10397,12 @@ msgid "Automatic, but prefer invoice date over event date"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/settings.py:1142 pretix/base/settings.py:1153
|
||||
#, fuzzy
|
||||
#| msgctxt "invoice"
|
||||
#| msgid "Invoice date"
|
||||
msgid "Invoice date"
|
||||
msgstr "Data da fatura"
|
||||
|
||||
#: pretix/base/settings.py:1146
|
||||
#, fuzzy
|
||||
#| msgctxt "subevent"
|
||||
#| msgid "Date ordering"
|
||||
msgid "Date of service"
|
||||
msgstr "Ordenação de datas"
|
||||
msgstr "Data do serviço"
|
||||
|
||||
#: pretix/base/settings.py:1155
|
||||
msgid ""
|
||||
@@ -12173,17 +12133,7 @@ msgid "Invoice {invoice_number}"
|
||||
msgstr "Fatura {invoice_number}"
|
||||
|
||||
#: pretix/base/settings.py:2789
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid ""
|
||||
#| "Hello,\n"
|
||||
#| "\n"
|
||||
#| "somebody requested a list of your orders for {event}.\n"
|
||||
#| "The list is as follows:\n"
|
||||
#| "\n"
|
||||
#| "{orders}\n"
|
||||
#| "\n"
|
||||
#| "Best regards, \n"
|
||||
#| "Your {event} team"
|
||||
#, python-brace-format
|
||||
msgid ""
|
||||
"Hello,\n"
|
||||
"\n"
|
||||
@@ -12196,12 +12146,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Olá,\n"
|
||||
"\n"
|
||||
"Segue anexo uma nova fatura para o pedido {code} para {evento} . Este pedido "
|
||||
"foi feito por {order_email}.\n"
|
||||
"Em anexo você encontrará uma nova fatura para o pedido {code} para {event}. "
|
||||
"Este pedido foi feito por {order_email}.\n"
|
||||
"\n"
|
||||
"Atenciosamente, \n"
|
||||
"\n"
|
||||
"Equipe organizadora de {event}"
|
||||
"Organização {event}"
|
||||
|
||||
#: pretix/base/settings.py:2807 pretix/base/settings.py:2823
|
||||
#, python-brace-format
|
||||
@@ -14030,21 +13980,16 @@ msgstr ""
|
||||
"que o cartão-presente é emitido."
|
||||
|
||||
#: pretix/control/forms/event.py:813
|
||||
#, fuzzy
|
||||
#| msgid "including all taxes"
|
||||
msgid "Prices including tax"
|
||||
msgstr "incluindo todos os impostos"
|
||||
msgstr "Preços incluindo impostos"
|
||||
|
||||
#: pretix/control/forms/event.py:814
|
||||
msgid "Recommended if you sell tickets at least partly to consumers."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/control/forms/event.py:818
|
||||
#, fuzzy
|
||||
#| msgctxt "reporting_timeframe"
|
||||
#| msgid "All future (excluding today)"
|
||||
msgid "Prices excluding tax"
|
||||
msgstr "Todos os futuros (excluindo hoje)"
|
||||
msgstr "Preços excluindo impostos"
|
||||
|
||||
#: pretix/control/forms/event.py:819
|
||||
msgid "Recommended only if you sell tickets primarily to business customers."
|
||||
@@ -17417,10 +17362,9 @@ msgstr ""
|
||||
"O endereço de e-mail foi alterado de \"{old_email}\" para \"{new_email}\"."
|
||||
|
||||
#: pretix/control/logdisplay.py:673
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid "Your email address has been updated."
|
||||
#, python-brace-format
|
||||
msgid "Your email address {email} has been confirmed."
|
||||
msgstr "Seu endereço de email foi atualizado."
|
||||
msgstr "Seu endereço de e-mail {email} foi confirmado."
|
||||
|
||||
#: pretix/control/logdisplay.py:685
|
||||
#, python-brace-format
|
||||
@@ -18219,7 +18163,7 @@ msgstr "Ingressos"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Impostos"
|
||||
|
||||
@@ -19697,6 +19641,20 @@ msgid ""
|
||||
"Best regards,\n"
|
||||
"Your pretix team\n"
|
||||
msgstr ""
|
||||
"Olá,\n"
|
||||
"\n"
|
||||
"%(reason)s\n"
|
||||
"\n"
|
||||
" %(code)s\n"
|
||||
"\n"
|
||||
"Por favor, nunca forneça este código para outra pessoa. Nosso time de "
|
||||
"suporte nunca irá solicitar este código.\n"
|
||||
"\n"
|
||||
"Se você não solicitou este código, por favor entre em contato conosco "
|
||||
"imediatamente.\n"
|
||||
"\n"
|
||||
"Atenciosamente,\n"
|
||||
"Time pretix\n"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/email/email_setup.txt:1
|
||||
#, python-format
|
||||
@@ -21321,10 +21279,8 @@ msgid "with custom rules"
|
||||
msgstr "Regras personalizadas"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:110
|
||||
#, fuzzy
|
||||
#| msgid "Base settings"
|
||||
msgid "Tax settings"
|
||||
msgstr "Configurações base"
|
||||
msgstr "Configurações de impostos"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/event/tax_delete.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax_delete.html:6
|
||||
@@ -22592,7 +22548,7 @@ msgstr "Só pode ser comprado com um cupom"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>mais</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22601,7 +22557,7 @@ msgstr "<strong>mais</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "incl. %(rate)s%% %(taxname)s"
|
||||
@@ -23619,7 +23575,7 @@ msgstr "INSEGURO"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
@@ -26151,7 +26107,7 @@ msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/shredder/download.html:29
|
||||
msgid "Download data"
|
||||
msgstr ""
|
||||
msgstr "Baixar dados"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/shredder/download.html:34
|
||||
msgid "Step 2: Confirm deletion"
|
||||
@@ -26482,7 +26438,7 @@ msgstr "Adicionar um dispositivo de autenticação de dois fatores"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/user/2fa_confirm_totp.html:8
|
||||
msgid "To set up this device, please follow the following steps:"
|
||||
msgstr ""
|
||||
msgstr "Para configurar este dispositivo, por favor siga os passos a seguir:"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/user/2fa_confirm_totp.html:12
|
||||
msgid "Download the Google Authenticator application to your phone:"
|
||||
@@ -26908,11 +26864,11 @@ msgstr ""
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html:6
|
||||
msgid "Session notes"
|
||||
msgstr ""
|
||||
msgstr "Notas de sessão"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html:17
|
||||
msgid "Audit log"
|
||||
msgstr ""
|
||||
msgstr "Log de auditoria"
|
||||
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_edit.html:30
|
||||
msgid "Method"
|
||||
@@ -27956,7 +27912,7 @@ msgstr ""
|
||||
|
||||
#: pretix/control/views/item.py:237
|
||||
msgid "The selected category has been deleted."
|
||||
msgstr ""
|
||||
msgstr "A categoria selecionada foi excluída"
|
||||
|
||||
#: pretix/control/views/item.py:322
|
||||
msgid "The new category has been created."
|
||||
@@ -29881,7 +29837,7 @@ msgstr ""
|
||||
|
||||
#: pretix/plugins/banktransfer/payment.py:239
|
||||
msgid "Please fill out your bank account details."
|
||||
msgstr ""
|
||||
msgstr "Por favor, preencha os detalhes da sua conta bancária."
|
||||
|
||||
#: pretix/plugins/banktransfer/payment.py:243
|
||||
msgid "Please enter your bank account details."
|
||||
@@ -30182,7 +30138,7 @@ msgstr ""
|
||||
|
||||
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/pending.html:122
|
||||
msgid "Scan the QR code with your banking app"
|
||||
msgstr ""
|
||||
msgstr "Escanear o QR Code com o seu aplicativo bancário"
|
||||
|
||||
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/refund_export.html:5
|
||||
#: pretix/plugins/banktransfer/templates/pretixplugins/banktransfer/refund_export.html:7
|
||||
@@ -30555,7 +30511,7 @@ msgid "Upload time"
|
||||
msgstr "Tempo de upload"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30753,6 +30709,8 @@ msgid ""
|
||||
"We're waiting for an answer from PayPal regarding your payment. Please "
|
||||
"contact us, if this takes more than a few hours."
|
||||
msgstr ""
|
||||
"Estamos aguardando por informações do PayPal referentes ao seu pagamento. "
|
||||
"Por favor, entre em contato conosco se isso demorar mais que algumas horas."
|
||||
|
||||
#: pretix/plugins/paypal/templates/pretixplugins/paypal/redirect.html:17
|
||||
#: pretix/plugins/paypal2/templates/pretixplugins/paypal2/redirect.html:17
|
||||
@@ -33377,19 +33335,17 @@ msgstr "Organizador: {organizer}"
|
||||
#: pretix/presale/ical.py:139
|
||||
#, python-brace-format
|
||||
msgid "{event} - {item}"
|
||||
msgstr ""
|
||||
msgstr "{event} - {item}"
|
||||
|
||||
#: pretix/presale/ical.py:147
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid "Start date"
|
||||
#, python-brace-format
|
||||
msgid "Start: {datetime}"
|
||||
msgstr "Data inicial"
|
||||
msgstr "Início: {datetime}"
|
||||
|
||||
#: pretix/presale/ical.py:150
|
||||
#, fuzzy, python-brace-format
|
||||
#| msgid "Admission: {datetime}"
|
||||
#, python-brace-format
|
||||
msgid "End: {datetime}"
|
||||
msgstr "Admissão: {datetime}"
|
||||
msgstr "Término: {datetime}"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/base.html:44
|
||||
#, fuzzy
|
||||
@@ -34220,25 +34176,25 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Valor atual:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "Um produto"
|
||||
msgstr[1] "%(num)s produtos"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "inclui %(tax_sum)s taxas"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Os itens no seu carrinho estão reservados para você por %(minutes)s minutos."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -34246,18 +34202,18 @@ msgstr ""
|
||||
"Os itens no seu carrinho não estão mais reservados para você. Você ainda "
|
||||
"pode completar o seu pedido desde que eles ainda estejam disponíveis."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "Renovar reserva"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Período de reserva"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Visão geral dos produtos solicitados."
|
||||
|
||||
@@ -35639,10 +35595,8 @@ msgid "The following gift cards are available in your customer account:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/giftcard/checkout.html:24
|
||||
#, fuzzy
|
||||
#| msgid "Issued gift cards"
|
||||
msgid "Use gift card"
|
||||
msgstr "Cartões-presente emitidos"
|
||||
msgstr "Usar cartão-presente"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/giftcard/checkout_confirm.html:4
|
||||
#, python-format
|
||||
@@ -35761,10 +35715,9 @@ msgid "Expired since %(date)s"
|
||||
msgstr "Expirado desde"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:46
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Valid until %(datetime)s"
|
||||
#, python-format
|
||||
msgid "Valid until %(date)s"
|
||||
msgstr "Válido até %(datetime)s"
|
||||
msgstr "Válido até %(date)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/organizers/customer_giftcards.html:66
|
||||
#, fuzzy
|
||||
@@ -36294,10 +36247,8 @@ msgid "The selected date does not exist in this event series."
|
||||
msgstr "A data selecionada não existe nesta série de eventos."
|
||||
|
||||
#: pretix/presale/views/widget.py:412
|
||||
#, fuzzy
|
||||
#| msgid "The selected seat \"{seat}\" is not available."
|
||||
msgid "The selected date is not available."
|
||||
msgstr "O assento selecionado \"{seat}\" não está disponível."
|
||||
msgstr "A data selecionada não está disponível."
|
||||
|
||||
#: pretix/presale/views/widget.py:476
|
||||
#, python-format
|
||||
@@ -36320,6 +36271,12 @@ msgstr "Acesso de escrita"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Digite sua senha atual se quiser alterar seu endereço de email ou senha."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-10-09 16:00+0000\n"
|
||||
"Last-Translator: Edd28 <chitu_edy@yahoo.com>\n"
|
||||
"Language-Team: Romanian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1274,7 +1274,7 @@ msgstr "Prenume"
|
||||
msgid "Family name"
|
||||
msgstr "Nume"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1288,7 +1288,7 @@ msgstr "Nume"
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Simplu cu logo"
|
||||
|
||||
@@ -3403,7 +3403,7 @@ msgstr "Păstrează-mă autentificat"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Această combinație de acreditări nu este cunoscută de sistemul nostru."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3422,7 +3422,7 @@ msgstr ""
|
||||
"formularul de autentificare."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Vă rugăm să introduceți aceeași parolă de două ori"
|
||||
@@ -3432,7 +3432,7 @@ msgstr "Vă rugăm să introduceți aceeași parolă de două ori"
|
||||
msgid "Repeat password"
|
||||
msgstr "Repetați parola"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3608,42 +3608,30 @@ msgstr "Smartphone cu aplicația Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Token hardware compatibil cu WebAuthn (de exemplu, Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Vă rugăm să introduceți parola actuală dacă doriți să vă schimbați adresa de "
|
||||
"e-mail sau parola."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Parola curentă pe care ați introdus-o nu era corectă."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Vă rugăm să alegeți o parolă diferită de cea actuală."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Introduceți parola curentă"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Parolă nouă"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Repetați parola nouă"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3651,13 +3639,13 @@ msgstr ""
|
||||
"Există deja un cont asociat cu această adresă de e-mail. Vă rugăm să alegeți "
|
||||
"un alt cont."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Adresă email"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3836,7 +3824,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"până la {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4514,7 +4502,7 @@ msgstr "Dacă este dezactivată, nu veți primi nicio notificare."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Utilizator"
|
||||
|
||||
@@ -7721,7 +7709,7 @@ msgstr "Datele"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Total net"
|
||||
|
||||
@@ -7733,8 +7721,8 @@ msgstr "Suma în curs de plată"
|
||||
msgid "Purchased products"
|
||||
msgstr "Produse achiziționate"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Detaliile comenzii"
|
||||
@@ -8240,10 +8228,10 @@ msgstr "Prețul incluzând suplimentele"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Ioan Popescu"
|
||||
|
||||
@@ -8598,7 +8586,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Numele participantului: {part}"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Dl Popescu"
|
||||
@@ -9476,7 +9464,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Primiți acest e-mail pentru că ați plasat o comandă pentru {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "Calendar invites"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -9971,33 +9959,33 @@ msgstr ""
|
||||
"S-a produs o eroare în încercarea de a vă trimite banii înapoi. Vă rugăm să "
|
||||
"contactați organizatorul evenimentului pentru informații suplimentare."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Vezi detaliile de înregistrare"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Exemplu de corporație"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Exemplu de bilet de intrare"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Aici poate fi introdus un text individual cu un motiv."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Suma a fost debitată de pe cardul dumneavoastră."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Vă rugăm să transferați bani în acest cont bancar: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Această valoare va fi înlocuită pe baza parametrilor dinamici."
|
||||
@@ -19089,7 +19077,7 @@ msgstr "Bilete"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Taxe"
|
||||
|
||||
@@ -23691,7 +23679,7 @@ msgstr "Poate fi cumpărat numai cu ajutorul unui voucher"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -23700,7 +23688,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "incl. %(rate)s%% %(taxname)s"
|
||||
@@ -24785,7 +24773,7 @@ msgstr "NESIGUR"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
@@ -32393,7 +32381,7 @@ msgid "Upload time"
|
||||
msgstr "Oră încărcare"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -36303,7 +36291,7 @@ msgstr "Adaugă încă un %(item)s în coș. Aveți în prezent %(count)s în co
|
||||
msgid "Current value:"
|
||||
msgstr "Valoarea actuală"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -36311,19 +36299,19 @@ msgstr[0] "Un produs"
|
||||
msgstr[1] "%(num)s produse"
|
||||
msgstr[2] "%(num)s produse"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "inclusiv %(tax_sum)s taxe"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Articolele din coșul dvs. sunt rezervate pentru dvs. timp de %(minutes)s "
|
||||
"minute."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -36331,20 +36319,20 @@ msgstr ""
|
||||
"Articolele din coșul tău nu mai sunt rezervate. Mai poți încă finaliza "
|
||||
"comanda atât timp cât acestea mai apar disponibile."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Descrierea evenimentului"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Perioada de rezervare"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Sumar al produselor comandate."
|
||||
|
||||
@@ -38521,6 +38509,17 @@ msgstr "Acces la scriere"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Vă rugăm să introduceți parola actuală dacă doriți să vă schimbați adresa "
|
||||
#~ "de e-mail sau parola."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are receiving this email because you placed an order for the "
|
||||
#~ "following event:"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-10-17 16:55+0000\n"
|
||||
"Last-Translator: fd <fd@denkena-consulting.com>\n"
|
||||
"Language-Team: Russian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1274,7 +1274,7 @@ msgstr "Имя"
|
||||
msgid "Family name"
|
||||
msgstr "Фамилия"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1288,7 +1288,7 @@ msgstr "Фамилия"
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3455,7 +3455,7 @@ msgstr "Не выходить из системы"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Эта комбинация учётных данных неизвестна нашей системе."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3472,7 +3472,7 @@ msgstr ""
|
||||
"используйте форму входа. "
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3482,7 +3482,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr "Повторите пароль"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3648,54 +3648,42 @@ msgstr "Смартфон с приложением Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-совместимый аппаратный токен (например, Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Пожалуйста, введите ваш текущий пароль, если вы хотите изменить свой адрес "
|
||||
"электронной почты или пароль."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Ваш текущий пароль"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Адрес электронной почты"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3872,7 +3860,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4609,7 +4597,7 @@ msgstr "Если отключено, вы не будете получать н
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -7812,7 +7800,7 @@ msgstr "Даты"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Общая сумма нетто"
|
||||
|
||||
@@ -7824,8 +7812,8 @@ msgstr "Неуплаченная сумма"
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Просмотреть данные заказа"
|
||||
@@ -8343,10 +8331,10 @@ msgstr "Цена, включая дополнительные продукты"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -8716,7 +8704,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Имена посетителей"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -9570,7 +9558,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "Sample variation"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -10033,35 +10021,35 @@ msgstr ""
|
||||
"Произошла ошибка при попытке вернуть вам деньги. Пожалуйста, свяжитесь с "
|
||||
"организатором мероприятия для получения дополнительной информации."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Посмотреть регистрационные данные"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Название компании"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Образец входного билета"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Здесь можно вставить отдельный текст с указанием причины."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Сумма была списана с вашей карты."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Пожалуйста, переведите деньги на следующий банковский счёт: "
|
||||
"9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -18178,7 +18166,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Налоги"
|
||||
|
||||
@@ -22402,7 +22390,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>плюс</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22411,7 +22399,7 @@ msgstr "<strong>плюс</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "вкл. %(rate)s%% %(taxname)s"
|
||||
@@ -23433,7 +23421,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Общая сумма"
|
||||
|
||||
@@ -30542,7 +30530,7 @@ msgid "Upload time"
|
||||
msgstr "Скачать билет"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -34444,7 +34432,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Валюта"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, fuzzy, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -34452,19 +34440,19 @@ msgstr[0] "Один продуктДополнительные продукты
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, fuzzy, python-format
|
||||
#| msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "вкл. %(rate)s%% %(taxname)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
#| msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Позиции в вашей корзине зарезервированы для вас на %(minutes)s минут."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
#, fuzzy
|
||||
#| msgid "The items in your cart are no longer reserved for you."
|
||||
msgid ""
|
||||
@@ -34472,20 +34460,20 @@ msgid ""
|
||||
"complete your order as long as they’re available."
|
||||
msgstr "Позиции в вашей корзине больше не зарезервированы для вас."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Описание продукта"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Описание продукта"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -36687,6 +36675,17 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Пожалуйста, введите ваш текущий пароль, если вы хотите изменить свой "
|
||||
#~ "адрес электронной почты или пароль."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Order code"
|
||||
#~ msgid "Order language code"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2021-03-03 06:00+0000\n"
|
||||
"Last-Translator: helabasa <R45XvezA@pm.me>\n"
|
||||
"Language-Team: Sinhala <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1144,7 +1144,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1158,7 +1158,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3188,7 +3188,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3203,7 +3203,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3213,7 +3213,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3362,46 +3362,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3566,7 +3560,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4207,7 +4201,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6940,7 +6934,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6952,8 +6946,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7388,10 +7382,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7711,7 +7705,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8407,7 +8401,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8778,33 +8772,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16234,7 +16228,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "බදු"
|
||||
|
||||
@@ -20164,7 +20158,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20173,7 +20167,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21128,7 +21122,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27712,7 +27706,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -31088,39 +31082,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-03-15 20:49+0000\n"
|
||||
"Last-Translator: Kristian Feldsam <feldsam@gmail.com>\n"
|
||||
"Language-Team: Slovak <https://translate.pretix.eu/projects/pretix/pretix/sk/"
|
||||
@@ -1224,7 +1224,7 @@ msgstr "Meno"
|
||||
msgid "Family name"
|
||||
msgstr "Priezvisko"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1238,7 +1238,7 @@ msgstr "Priezvisko"
|
||||
msgid "Default"
|
||||
msgstr "Predvolené nastavenie"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Jednoduché s logom"
|
||||
|
||||
@@ -3307,7 +3307,7 @@ msgstr "Nechajte ma prihláseného"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Táto kombinácia poverení nie je nášmu systému známa."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Z bezpečnostných dôvodov počkajte 5 minút, kým to skúsite znova."
|
||||
@@ -3324,7 +3324,7 @@ msgstr ""
|
||||
"formulár."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Zadajte dvakrát to isté heslo"
|
||||
@@ -3334,7 +3334,7 @@ msgstr "Zadajte dvakrát to isté heslo"
|
||||
msgid "Repeat password"
|
||||
msgstr "Opakovanie hesla"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3508,55 +3508,43 @@ msgstr "Smartfón s aplikáciou Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Hardvérový token kompatibilný s WebAuthn (napr. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Ak chcete zmeniť svoju e-mailovú adresu alebo heslo, zadajte svoje aktuálne "
|
||||
"heslo."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Aktuálne heslo, ktoré ste zadali, nebolo správne."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Zvoľte si iné heslo, ako je vaše súčasné."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Vaše aktuálne heslo"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Nové heslo"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Opakovanie nového hesla"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
"K tejto e-mailovej adrese je už priradené konto. Vyberte si prosím iný."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "E-mailová adresa"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3736,7 +3724,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"do {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4392,7 +4380,7 @@ msgstr "Ak je vypnuté, nebudete dostávať žiadne upozornenia."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Používateľ"
|
||||
|
||||
@@ -7474,7 +7462,7 @@ msgstr "Dátumy"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Čistý súčet"
|
||||
|
||||
@@ -7486,8 +7474,8 @@ msgstr "Čakajúca suma"
|
||||
msgid "Purchased products"
|
||||
msgstr "Zakúpené produkty"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Zobraziť podrobnosti objednávky"
|
||||
@@ -7974,10 +7962,10 @@ msgstr "Cena vrátane doplnkov"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8304,7 +8292,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Meno účastníka na pozdrav"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Pán Doe"
|
||||
@@ -9057,7 +9045,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Tento e-mail dostávate, pretože ste si objednali {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Pozvánka do kalendára"
|
||||
@@ -9492,33 +9480,33 @@ msgstr ""
|
||||
"Pri pokuse o odoslanie peňazí späť došlo k chybe. Ďalšie informácie vám "
|
||||
"poskytne organizátor podujatia."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Zobraziť podrobnosti registrácie"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Vzorka spoločnosti"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Ukážka vstupenky"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Tu je možné vložiť individuálny text s odôvodnením."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Z vašej karty bola stiahnutá suma."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Prosím, preveďte peniaze na tento bankový účet: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Táto hodnota sa nahradí na základe dynamických parametrov."
|
||||
@@ -18177,7 +18165,7 @@ msgstr "Vstupenky"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Dane"
|
||||
|
||||
@@ -22512,7 +22500,7 @@ msgstr "Možno zakúpiť len pomocou kupónu"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -22521,7 +22509,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "vrátane %(rate)s%% %(taxname)s"
|
||||
@@ -23560,7 +23548,7 @@ msgstr "UNSAFE"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Celkom"
|
||||
|
||||
@@ -30673,7 +30661,7 @@ msgid "Upload time"
|
||||
msgstr "Čas nahrávania"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -34323,7 +34311,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Aktuálna hodnota:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -34331,17 +34319,17 @@ msgstr[0] "Jedna vstupenka"
|
||||
msgstr[1] "%(num)s vstupenky"
|
||||
msgstr[2] "%(num)s vstupeniek"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "vrátane %(tax_sum)s daní"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Položky v košíku sú pre vás rezervované na %(minutes)s minút."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -34349,20 +34337,20 @@ msgstr ""
|
||||
"Vstupenky v košíku už nie sú pre Vás rezervované. Objednávku môžete "
|
||||
"dokončiť, ak sú stále k dispozícii."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Popis podujatia"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Obdobie rezervácie"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Prehľad objednaných produktov."
|
||||
|
||||
@@ -36446,6 +36434,17 @@ msgstr "Prístup na zápis"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Ak chcete zmeniť svoju e-mailovú adresu alebo heslo, zadajte svoje "
|
||||
#~ "aktuálne heslo."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 16:09+0100\n"
|
||||
"Last-Translator: Lovro <lovrogrilc@gmail.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1230,7 +1230,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1244,7 +1244,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr "Privzeto"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Enostavno z logotipom"
|
||||
|
||||
@@ -3379,7 +3379,7 @@ msgstr "Ostani prijavljen"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Naš sistem ne pozna te kombinacije poverilnic."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Iz varnostnih razlogov počakajte 5 minut, preden poskusite znova."
|
||||
@@ -3394,7 +3394,7 @@ msgid ""
|
||||
msgstr "S tem email naslovom ste že registrirani. Prijavite se."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Prosim vnesite isto geslo dvakrat"
|
||||
@@ -3404,7 +3404,7 @@ msgstr "Prosim vnesite isto geslo dvakrat"
|
||||
msgid "Repeat password"
|
||||
msgstr "Ponovite geslo"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3576,52 +3576,42 @@ msgstr "Pametni telefon z aplikacijo Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Žeton strojne opreme, združljiv z WebAuthn (npr. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr "Za spremembo gesla ali email naslova, vnesite vaše trenutno geslo."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Vnešeno trenutno geslo ni pravilno."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Vaše trenutno geslo"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Novo geslo"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Ponovite vaše geslo"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr "S tem email naslovom je že povezan obstoječ profil. Izberite drugega."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Email naslov"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3798,7 +3788,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"do {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4485,7 +4475,7 @@ msgstr "Če to izključite, ne boste prejemali nobenih obvestil."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Uporabnik"
|
||||
|
||||
@@ -7642,7 +7632,7 @@ msgstr "Datumi"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Neto skupaj"
|
||||
|
||||
@@ -7654,8 +7644,8 @@ msgstr "Čakajoči znesek"
|
||||
msgid "Purchased products"
|
||||
msgstr "Kupljeni izdelki"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Oglejte si podrobnosti naročila"
|
||||
@@ -8145,10 +8135,10 @@ msgstr "Cena z vključenimi dodatki"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Janez Novak"
|
||||
|
||||
@@ -8513,7 +8503,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Ime udeleženca: {part}"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "G. Novak"
|
||||
@@ -9393,7 +9383,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "To e-pošto ste prejeli, ker ste oddali naročilo za {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "Sample variation"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -9876,33 +9866,33 @@ msgstr ""
|
||||
"Pri poskusu pošiljanja denarja je prišlo do napake. Za dodatne informacije "
|
||||
"se obrnite na organizatorja dogodka."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Primer Družbe"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Vzorec vstopnice"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Sem lahko vstavite besedilo z razlago."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Znesek je bremenil vašo kartico."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Prenesite denar na bančni račun: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -18034,7 +18024,7 @@ msgstr "Vstopnice"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -22230,7 +22220,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -22239,7 +22229,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -23247,7 +23237,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Skupaj"
|
||||
|
||||
@@ -30298,7 +30288,7 @@ msgid "Upload time"
|
||||
msgstr "Datum in ura"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33990,7 +33980,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Trenutna vrednost"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -33999,18 +33989,18 @@ msgstr[1] "%(num)s izdelka"
|
||||
msgstr[2] "%(num)s izdelki"
|
||||
msgstr[3] "%(num)s izdelkov"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
#| msgid "The items in your cart are no longer reserved for you."
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Predmeti v vaši košarici niso več rezervirani za vas."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
#, fuzzy
|
||||
#| msgid "The items in your cart are no longer reserved for you."
|
||||
msgid ""
|
||||
@@ -34018,20 +34008,20 @@ msgid ""
|
||||
"complete your order as long as they’re available."
|
||||
msgstr "Predmeti v vaši košarici niso več rezervirani za vas."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Opis izdelka"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Obdobje rezervacije"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -36068,6 +36058,15 @@ msgstr ""
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr "Za spremembo gesla ali email naslova, vnesite vaše trenutno geslo."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -1118,7 +1118,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1132,7 +1132,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3150,7 +3150,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3165,7 +3165,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3175,7 +3175,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,46 +3324,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3526,7 +3520,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4163,7 +4157,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6890,7 +6884,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6902,8 +6896,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7338,10 +7332,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7659,7 +7653,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8353,7 +8347,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8724,33 +8718,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16141,7 +16135,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20055,7 +20049,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20064,7 +20058,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21018,7 +21012,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27558,7 +27552,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30912,39 +30906,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-07 23:00+0000\n"
|
||||
"Last-Translator: Linnea Thelander <linnea@coeo.events>\n"
|
||||
"Language-Team: Swedish <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1225,7 +1225,7 @@ msgstr "Förnamn"
|
||||
msgid "Family name"
|
||||
msgstr "Efternamn"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1239,7 +1239,7 @@ msgstr "Efternamn"
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Enkel med logo"
|
||||
|
||||
@@ -3309,7 +3309,7 @@ msgstr "Håll mig inloggad"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Denna kombination av inloggningsuppgifter är inte känd av vårt system."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Av säkerhetsskäl, var snäll och vänta 5 minuter innan du testar igen."
|
||||
@@ -3326,7 +3326,7 @@ msgstr ""
|
||||
"istället."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Var snäll och fyll i samma lösenord två gånger"
|
||||
@@ -3336,7 +3336,7 @@ msgstr "Var snäll och fyll i samma lösenord två gånger"
|
||||
msgid "Repeat password"
|
||||
msgstr "Upprepa lösenord"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
msgid "Your email address"
|
||||
msgstr "E-postadress"
|
||||
@@ -3505,42 +3505,30 @@ msgstr "Smartphone med autentiseringsapplikationen"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-kompatibel hårdvarutoken (ex. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Var snäll och fyll i ditt nuvarande lösenord om du vill ändra din mail eller "
|
||||
"ditt lösenord."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Felaktigt lösenord."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Vänligen välj ett annat lösenord än ditt nuvarande."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Ditt nuvarande lösenord"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "nytt lösenord"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Upprepa nytt lösenord"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3548,12 +3536,12 @@ msgstr ""
|
||||
"Det finns redan ett konto med den här email adressen, var snäll och fyll i "
|
||||
"ett annat."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
msgid "Old email address"
|
||||
msgstr "E-postadress"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
msgid "New email address"
|
||||
msgstr "E-postadress"
|
||||
@@ -3736,7 +3724,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"till {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4391,7 +4379,7 @@ msgstr "Stäng av för att inte ta emot notifieringar."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Användare"
|
||||
|
||||
@@ -7490,7 +7478,7 @@ msgstr "Datum"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Total (netto)"
|
||||
|
||||
@@ -7502,8 +7490,8 @@ msgstr "Obetalt belopp"
|
||||
msgid "Purchased products"
|
||||
msgstr "Köpta produkter"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Visa bokningsdetaljer"
|
||||
@@ -7995,10 +7983,10 @@ msgstr "Pris inklusive tillägg"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8325,7 +8313,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Deltagarnamn för hälsning"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Mr Doe"
|
||||
@@ -9106,7 +9094,7 @@ msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
"Du får detta e-postmeddelande eftersom du har lagt en bokning för {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Kalenderinbjudan"
|
||||
@@ -9556,33 +9544,33 @@ msgstr ""
|
||||
"Ett fel uppstod när vi försökte skicka tillbaka pengarna till dig. Vänligen "
|
||||
"kontakta evenemangsorganisatören för mer information."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Granska registreringsdetaljer"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Exempel Företaget"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Exempel på Entrébiljett"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "En text med en anledning kan läggas in här."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Beloppet har debiterats ditt kort."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Vänligen för över pengar till detta bankkonto: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Detta värde kommer att ersättas baserat på dynamiska parametrar."
|
||||
@@ -18327,7 +18315,7 @@ msgstr "Biljetter"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Moms"
|
||||
|
||||
@@ -22802,7 +22790,7 @@ msgstr "Kan endast köpas med en kupong"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -22811,7 +22799,7 @@ msgstr "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "inkl. %(rate)s%% %(taxname)s"
|
||||
@@ -23896,7 +23884,7 @@ msgstr "OSÄKER"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Totalt"
|
||||
|
||||
@@ -31296,7 +31284,7 @@ msgid "Upload time"
|
||||
msgstr "Uppladdningstid"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -35059,25 +35047,25 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Nuvarande värde:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "En produkt"
|
||||
msgstr[1] "%(num)s produkter"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "inkl. %(tax_sum)s skatter"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Produkterna i din bokning är reserverade för dig i %(minutes)s minuter."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -35085,20 +35073,20 @@ msgstr ""
|
||||
"Produkterna i din bokning är inte längre reserverade för dig. Du kan dock "
|
||||
"genomföra din order så länge produkterna fortfarande är tillgängliga."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Evenemangsbeskrivning"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Reservationsperiod"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Översikt över dina bokade produkter."
|
||||
|
||||
@@ -37203,6 +37191,17 @@ msgstr "Skrivrättigheter"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Var snäll och fyll i ditt nuvarande lösenord om du vill ändra din mail "
|
||||
#~ "eller ditt lösenord."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2024-03-30 11:00+0000\n"
|
||||
"Last-Translator: Thatthep <amaudy@gmail.com>\n"
|
||||
"Language-Team: Thai <https://translate.pretix.eu/projects/pretix/pretix/th/"
|
||||
@@ -1121,7 +1121,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1135,7 +1135,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3153,7 +3153,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3168,7 +3168,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3178,7 +3178,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3327,46 +3327,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3529,7 +3523,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4166,7 +4160,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6893,7 +6887,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6905,8 +6899,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7341,10 +7335,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7662,7 +7656,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8356,7 +8350,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8727,33 +8721,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16144,7 +16138,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20054,7 +20048,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20063,7 +20057,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21017,7 +21011,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27555,7 +27549,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30910,39 +30904,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-01-04 01:00+0000\n"
|
||||
"Last-Translator: Hijiri Umemoto <hijiri@umemoto.org>\n"
|
||||
"Language-Team: Turkish <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1285,7 +1285,7 @@ msgstr "Etkinlik adı"
|
||||
msgid "Family name"
|
||||
msgstr "Ad Soyad"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1299,7 +1299,7 @@ msgstr "Ad Soyad"
|
||||
msgid "Default"
|
||||
msgstr "Varsayılan"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3551,7 +3551,7 @@ msgstr "Oturumumu açık tut"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Bu kupon kodu veritabanımızda bilinmemektedir."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3567,7 +3567,7 @@ msgstr ""
|
||||
"Bu e-posta adresiyle zaten kaydoldunuz, lütfen giriş panelini kullanın."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Lütfen aynı şifreyi ikince kez girin"
|
||||
@@ -3577,7 +3577,7 @@ msgstr "Lütfen aynı şifreyi ikince kez girin"
|
||||
msgid "Repeat password"
|
||||
msgstr "Şifreyi tekrar girin"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Your address"
|
||||
msgid "Your email address"
|
||||
@@ -3750,55 +3750,43 @@ msgstr "Kimlik doğrulama uygulamasına sahip akıllı telefon"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "U2F uyumlu donanım belirteci (ör. Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"E-posta adresinizi veya şifrenizi değiştirmek isterseniz lütfen mevcut "
|
||||
"şifrenizi girin."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Girdiğiniz geçerli şifre doğru değil."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Mevcut şifreniz"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Yeni şifre"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Yeni şifreyi tekrar girin"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
"Bu e-posta adresiyle ilişkili bir hesap var. Lütfen farklı bir tane seçin."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "E-posta adresi"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3982,7 +3970,7 @@ msgstr ""
|
||||
"{from_date} tarihinden\n"
|
||||
"{to_date} tarihine kadar"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4737,7 +4725,7 @@ msgstr "Kapatırsanız, herhangi bir bildirim almayacaksınız."
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "kullanıcı"
|
||||
|
||||
@@ -7968,7 +7956,7 @@ msgstr "Tarihler"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Net toplam"
|
||||
|
||||
@@ -7984,8 +7972,8 @@ msgstr "Ödeme tarihi"
|
||||
msgid "Purchased products"
|
||||
msgstr "Ürünleri değiştir"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Sipariş detaylarını incele"
|
||||
@@ -8511,10 +8499,10 @@ msgstr "Kabul edilmeyen ürünler için bilet üret"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "John Doe"
|
||||
|
||||
@@ -8908,7 +8896,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Katılımcı adları"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -9782,7 +9770,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "{event} için bir sipariş verdiğiniz için bu e-postayı alıyorsunuz."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "Resend link"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -10243,39 +10231,39 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
#, fuzzy
|
||||
#| msgid "View order details"
|
||||
msgid "View registration details"
|
||||
msgstr "Sipariş detaylarını incele"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Örnek Kurum"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Örnek Giriş Bileti"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
#, fuzzy
|
||||
#| msgid "An individial text with a reason can be inserted here."
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Bir nedeni olan tek bir metin buraya eklenebilir."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
#, fuzzy
|
||||
#| msgid "The products have been successfully added to your cart."
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Ürünler sepetinize başarıyla eklendi."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Lütfen bu banka hesabına havale gönderin: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -19600,7 +19588,7 @@ msgstr "Biletler"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Vergi"
|
||||
|
||||
@@ -24246,7 +24234,7 @@ msgstr "Sadece bir kupon kullanarak satın alabilirsiniz"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>artı</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -24255,7 +24243,7 @@ msgstr "<strong>artı</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "dahil et %(rate)s%% %(taxname)s"
|
||||
@@ -25348,7 +25336,7 @@ msgstr "Güvenli Değil"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Toplam"
|
||||
|
||||
@@ -33173,7 +33161,7 @@ msgid "Upload time"
|
||||
msgstr "Bileti indir"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -37205,7 +37193,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Mevcut değer:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Any product"
|
||||
msgid "One product"
|
||||
@@ -37213,19 +37201,19 @@ msgid_plural "%(num)s products"
|
||||
msgstr[0] "Herhangi bir ürün"
|
||||
msgstr[1] "Herhangi bir ürün"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, fuzzy, python-format
|
||||
#| msgid "incl. %(rate)s%% taxes"
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "dahil edilen %(rate)s%% vergi"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
#| msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "Sepetinizdeki öğeler %(minutes)s dakika için size ayrılmıştır."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
#, fuzzy
|
||||
#| msgid "The items in your cart are no longer reserved for you."
|
||||
msgid ""
|
||||
@@ -37233,20 +37221,20 @@ msgid ""
|
||||
"complete your order as long as they’re available."
|
||||
msgstr "Sepetinizdeki öğeler artık sizin için ayrılmamış."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Ürün Açıklaması"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Rezervasyon dönemi"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -39479,6 +39467,17 @@ msgstr "Yazma erişimi"
|
||||
msgid "Kosovo"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "E-posta adresinizi veya şifrenizi değiştirmek isterseniz lütfen mevcut "
|
||||
#~ "şifrenizi girin."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are receiving this email because you placed an order for the "
|
||||
#~ "following event:"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-14 06:00+0000\n"
|
||||
"Last-Translator: Andrii Andriiashyn <andr_andrey@ukr.net>\n"
|
||||
"Language-Team: Ukrainian <https://translate.pretix.eu/projects/pretix/pretix/"
|
||||
@@ -1238,7 +1238,7 @@ msgstr "Ім'я"
|
||||
msgid "Family name"
|
||||
msgstr "Прізвище"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1252,7 +1252,7 @@ msgstr "Прізвище"
|
||||
msgid "Default"
|
||||
msgstr "За замовчуванням"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Простий варіант з логотипом"
|
||||
|
||||
@@ -3353,7 +3353,7 @@ msgstr "Не виходити із системи"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "Ця комбінація облікових даних не відома нашій системі."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "З міркувань безпеки зачекайте 5 хвилин, перш ніж повторити спробу."
|
||||
@@ -3370,7 +3370,7 @@ msgstr ""
|
||||
"скористайтеся формою входу (login)."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Будь ласка, двічі введіть той самий пароль"
|
||||
@@ -3380,7 +3380,7 @@ msgstr "Будь ласка, двічі введіть той самий пар
|
||||
msgid "Repeat password"
|
||||
msgstr "Повторіть пароль"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3555,42 +3555,30 @@ msgstr "Смартфон із програмою Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "WebAuthn-сумісний апаратний маркер (наприклад, Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Будь ласка, введіть свій поточний пароль, якщо ви хочете змінити адресу "
|
||||
"електронної пошти або пароль."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Поточний пароль, який ви ввели, був неправильним."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Будь ласка, виберіть пароль, який відрізняється від поточного."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Ваш актуальний пароль"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Новий пароль"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Повторіть новий пароль"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
@@ -3598,13 +3586,13 @@ msgstr ""
|
||||
"З цією адресою електронної пошти вже пов’язано обліковий запис. Будь ласка, "
|
||||
"виберіть іншу."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Адреса електронної пошти"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3783,7 +3771,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"до {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4456,7 +4444,7 @@ msgstr "Якщо вимкнено, ви не отримуватимете жод
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Користувач"
|
||||
|
||||
@@ -7625,7 +7613,7 @@ msgstr "Дати"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Сума Нетто"
|
||||
|
||||
@@ -7637,8 +7625,8 @@ msgstr "Сума в очікуванні"
|
||||
msgid "Purchased products"
|
||||
msgstr "Придбані продукти"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Переглянути деталі замовлення"
|
||||
@@ -8137,10 +8125,10 @@ msgstr "Ціна з урахуванням доповнень"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "Петро Коваль"
|
||||
|
||||
@@ -8492,7 +8480,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Ім'я учасника: {part}"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Пане Ковалю"
|
||||
@@ -9344,7 +9332,7 @@ msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
"Ви отримали цей електронний лист, оскільки зробили замовлення на {event}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
@@ -9821,34 +9809,34 @@ msgstr ""
|
||||
"Під час спроби повернути вам гроші сталася помилка. За додатковою "
|
||||
"інформацією звертайтеся до організатора події."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Переглянути деталі реєстрації"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Приклад назви компанії"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Приклад квитка"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Сюди можна вставити окремий текст з причиною."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Сума списана з вашої картки."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
"Будь ласка, переведіть гроші на цей банківський рахунок: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -18774,7 +18762,7 @@ msgstr "Квитки"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Податки"
|
||||
|
||||
@@ -23055,7 +23043,7 @@ msgstr "Купити можна лише за ваучером"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>плюс</strong> %(rate)s%% %(taxname)s"
|
||||
@@ -23064,7 +23052,7 @@ msgstr "<strong>плюс</strong> %(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "враховуючи %(rate)s%% %(taxname)s"
|
||||
@@ -24118,7 +24106,7 @@ msgstr "НЕБЕЗПЕЧНО"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Загалом"
|
||||
|
||||
@@ -31198,7 +31186,7 @@ msgid "Upload time"
|
||||
msgstr "Час завантаження"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -34971,7 +34959,7 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "Поточна вартість"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, fuzzy, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
@@ -34979,18 +34967,18 @@ msgstr[0] "Один продукт%(num)s продукти%(num)s продукт
|
||||
msgstr[1] ""
|
||||
msgstr[2] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "врах. %(tax_sum)s податки"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Товари у вашому кошику зарезервовані для вас протягом %(minutes)s хвилин."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -34998,20 +34986,20 @@ msgstr ""
|
||||
"Товари у вашому кошику більше не зарезервовані для вас. Ви все ще можете "
|
||||
"завершити своє замовлення, поки вони доступні."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "Опис події"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Період бронювання"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Переглянути замовлені продукти."
|
||||
|
||||
@@ -37151,6 +37139,17 @@ msgstr "Доступ до запису"
|
||||
msgid "Kosovo"
|
||||
msgstr "Косово"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Будь ласка, введіть свій поточний пароль, якщо ви хочете змінити адресу "
|
||||
#~ "електронної пошти або пароль."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are receiving this email because you placed an order for the "
|
||||
#~ "following event:"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-06-11 02:00+0000\n"
|
||||
"Last-Translator: Michael Dao <garudong89@gmail.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.pretix.eu/projects/pretix/"
|
||||
@@ -1221,7 +1221,7 @@ msgstr "Tên được cho"
|
||||
msgid "Family name"
|
||||
msgstr "Tên gia đình"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1235,7 +1235,7 @@ msgstr "Tên gia đình"
|
||||
msgid "Default"
|
||||
msgstr "Mặc định"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "Đơn giản với logo"
|
||||
|
||||
@@ -3294,7 +3294,7 @@ msgstr ""
|
||||
"Sự kết hợp của thông tin đăng nhập này không được biết đến với hệ thống của "
|
||||
"chúng tôi."
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "Vì lý do bảo mật, vui lòng đợi 5 phút trước khi bạn thử lại."
|
||||
@@ -3310,7 +3310,7 @@ msgstr ""
|
||||
"Bạn đã đăng ký với địa chỉ email đó, vui lòng sử dụng biểu mẫu đăng nhập."
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "Vui lòng nhập cùng một mật khẩu hai lần"
|
||||
@@ -3320,7 +3320,7 @@ msgstr "Vui lòng nhập cùng một mật khẩu hai lần"
|
||||
msgid "Repeat password"
|
||||
msgstr "Lặp lại mật khẩu"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3486,50 +3486,42 @@ msgstr "Điện thoại thông minh với ứng dụng Authenticator"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "Mã thông báo phần cứng tương thích WebAuthn (ví dụ: Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
"Vui lòng nhập mật khẩu hiện tại của bạn nếu bạn muốn thay đổi địa chỉ email "
|
||||
"hoặc mật khẩu của bạn."
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "Mật khẩu hiện tại bạn đã nhập không chính xác."
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "Vui lòng chọn một mật khẩu khác với mật khẩu của bạn."
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "Mật khẩu hiện tại của bạn"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "Mật khẩu mới"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "Lặp lại mật khẩu mới"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr "Đã có một tài khoản được liên kết với địa chỉ email này."
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "Địa chỉ email"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3708,7 +3700,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr "{from_date} nuntil {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4361,7 +4353,7 @@ msgstr "Nếu tắt, bạn sẽ không nhận được bất kỳ thông báo n
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "Người dùng"
|
||||
|
||||
@@ -7324,7 +7316,7 @@ msgstr "Ngày"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "Tổng số ròng"
|
||||
|
||||
@@ -7336,8 +7328,8 @@ msgstr "Số tiền đang chờ xử lý"
|
||||
msgid "Purchased products"
|
||||
msgstr "Sản phẩm đã mua"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "Xem chi tiết đơn hàng"
|
||||
@@ -7809,10 +7801,10 @@ msgstr "Giá bao gồm cả tiện ích bổ sung"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -8134,7 +8126,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "Tên người tham dự để chào"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "Ông Doe"
|
||||
@@ -8854,7 +8846,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "Bạn đang nhận được email này vì bạn đã đặt hàng cho {sự kiện}."
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "Lịch mời"
|
||||
@@ -9282,33 +9274,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr "Có một lỗi trong khi cố gắng gửi lại tiền cho bạn."
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "Xem chi tiết đăng ký"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "Tập đoàn mẫu"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "Vé vào cửa mẫu"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "Một văn bản cá nhân với một lý do có thể được chèn ở đây."
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "Số tiền đã được tính vào thẻ của bạn."
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "Vui lòng chuyển tiền vào tài khoản ngân hàng này: 9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "Giá trị này sẽ được thay thế dựa trên các tham số động."
|
||||
@@ -17306,7 +17298,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "Thuế"
|
||||
|
||||
@@ -21514,7 +21506,7 @@ msgstr "Chỉ có thể được mua bằng chứng từ"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, fuzzy, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong> cộng </strong> %(tỷ lệ) s %% %(tên thuế) s"
|
||||
@@ -21523,7 +21515,7 @@ msgstr "<strong> cộng </strong> %(tỷ lệ) s %% %(tên thuế) s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, fuzzy, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "bao gồm."
|
||||
@@ -22563,7 +22555,7 @@ msgstr "Không an toàn"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "Tổng cộng"
|
||||
|
||||
@@ -29592,7 +29584,7 @@ msgid "Upload time"
|
||||
msgstr "Thời gian tải lên"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33190,26 +33182,26 @@ msgstr "Thêm một %(mục) S vào giỏ hàng của bạn."
|
||||
msgid "Current value:"
|
||||
msgstr "ID người dùng"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, fuzzy, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "bao gồm."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
"Các mặt hàng trong giỏ hàng của bạn được dành riêng cho bạn trong %(phút) "
|
||||
"phút."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
@@ -33217,18 +33209,18 @@ msgstr ""
|
||||
"Các mặt hàng trong giỏ của bạn không còn được giữ chỗ nữa. Bạn vẫn có thể "
|
||||
"hoàn tất đơn hàng miễn là chúng còn hàng."
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr "Gia hạn giữ chỗ"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "Thời gian đặt phòng"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "Tổng quan về các sản phẩm được đặt hàng của bạn."
|
||||
|
||||
@@ -35200,6 +35192,13 @@ msgstr "Viết quyền truy cập"
|
||||
msgid "Kosovo"
|
||||
msgstr "Kosovo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr ""
|
||||
#~ "Vui lòng nhập mật khẩu hiện tại của bạn nếu bạn muốn thay đổi địa chỉ "
|
||||
#~ "email hoặc mật khẩu của bạn."
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@@ -1118,7 +1118,7 @@ msgstr ""
|
||||
msgid "Family name"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1132,7 +1132,7 @@ msgstr ""
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr ""
|
||||
|
||||
@@ -3150,7 +3150,7 @@ msgstr ""
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3165,7 +3165,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr ""
|
||||
@@ -3175,7 +3175,7 @@ msgstr ""
|
||||
msgid "Repeat password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
msgid "Your email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,46 +3324,40 @@ msgstr ""
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
msgid "Old email address"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
msgid "New email address"
|
||||
msgstr ""
|
||||
|
||||
@@ -3526,7 +3520,7 @@ msgid ""
|
||||
"until {to_date}"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4163,7 +4157,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
@@ -6890,7 +6884,7 @@ msgstr ""
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr ""
|
||||
|
||||
@@ -6902,8 +6896,8 @@ msgstr ""
|
||||
msgid "Purchased products"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr ""
|
||||
@@ -7338,10 +7332,10 @@ msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr ""
|
||||
|
||||
@@ -7659,7 +7653,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -8353,7 +8347,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr ""
|
||||
@@ -8724,33 +8718,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -16141,7 +16135,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
@@ -20055,7 +20049,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -20064,7 +20058,7 @@ msgstr ""
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr ""
|
||||
@@ -21018,7 +21012,7 @@ msgstr ""
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
@@ -27558,7 +27552,7 @@ msgid "Upload time"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -30912,39 +30906,39 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
msgid "Renew reservation"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
msgid "Reservation renewed"
|
||||
msgstr ""
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 23:27+0000\n"
|
||||
"Last-Translator: Aarni Heinonen <vamoosev@gmail.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.pretix.eu/"
|
||||
@@ -1271,7 +1271,7 @@ msgstr "给定名称"
|
||||
msgid "Family name"
|
||||
msgstr "姓氏"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1285,7 +1285,7 @@ msgstr "姓氏"
|
||||
msgid "Default"
|
||||
msgstr "缺席"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "简约Logo"
|
||||
|
||||
@@ -3468,7 +3468,7 @@ msgstr "保持登录"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "凭据的这种组合对于我们的系统是未知的。"
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr ""
|
||||
@@ -3483,7 +3483,7 @@ msgid ""
|
||||
msgstr "您已使用该电子邮件地址注册,请使用登录表单。"
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "请输入两次相同的密码"
|
||||
@@ -3493,7 +3493,7 @@ msgstr "请输入两次相同的密码"
|
||||
msgid "Repeat password"
|
||||
msgstr "再次输入密码"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
msgid "Your email address"
|
||||
msgstr "电子邮件地址"
|
||||
@@ -3657,51 +3657,41 @@ msgstr "带有身份验证应用程序的智能手机"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "与WebAuthn兼容的硬件令牌(例如Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Please enter your current password if you want to change your email "
|
||||
#| "address or password."
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr "如果您想更改您的电子邮件地址或密码,请输入您的当前密码。"
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "您当前输入的密码不正确。"
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr ""
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "当前密码"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "新密码"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "再次输入新密码"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr "已经有一个与此电子邮件地址关联的帐户。请选择一个不同的。"
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
msgid "Old email address"
|
||||
msgstr "电子邮件地址"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
msgid "New email address"
|
||||
msgstr "电子邮件地址"
|
||||
@@ -3881,7 +3871,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"直到 {to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4618,7 +4608,7 @@ msgstr "如果关闭,您将不会收到任何通知。"
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "用户"
|
||||
|
||||
@@ -7733,7 +7723,7 @@ msgstr "日期"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "净额总计"
|
||||
|
||||
@@ -7747,8 +7737,8 @@ msgstr "冻结金额"
|
||||
msgid "Purchased products"
|
||||
msgstr "改变产品"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "查看订单详情"
|
||||
@@ -8242,10 +8232,10 @@ msgstr "价格包括附加"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "张三"
|
||||
|
||||
@@ -8623,7 +8613,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "观众姓名"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr ""
|
||||
@@ -9436,7 +9426,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "您收到此电子邮件是因为您订购了{event}。"
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
#, fuzzy
|
||||
#| msgid "Resend link"
|
||||
msgctxt "attachment_filename"
|
||||
@@ -9864,33 +9854,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr "尝试将钱汇回给您时出错。请联系活动组织者以获取更多信息。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "查看注册详细信息"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "样本公司"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "样本入场券"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "可以在此处插入具有原因的单个文本。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "这笔金额已经记在你的卡上了。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "请转账到这个银行账户:9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr ""
|
||||
@@ -18861,7 +18851,7 @@ msgstr "票"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "税"
|
||||
|
||||
@@ -23382,7 +23372,7 @@ msgstr "只能使用优惠券购买"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>加</strong>%(rate)s%%%(taxname)s"
|
||||
@@ -23391,7 +23381,7 @@ msgstr "<strong>加</strong>%(rate)s%%%(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "包括%(rate)s%%%(taxname)s"
|
||||
@@ -24446,7 +24436,7 @@ msgstr "不安全的"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "总计"
|
||||
|
||||
@@ -31983,7 +31973,7 @@ msgid "Upload time"
|
||||
msgstr "下载门票"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -35938,26 +35928,26 @@ msgstr ""
|
||||
msgid "Current value:"
|
||||
msgstr "当前的问题"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, fuzzy, python-format
|
||||
#| msgid "Add product"
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "附加产品"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, fuzzy, python-format
|
||||
#| msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "包括%(rate)s%%%(taxname)s"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, fuzzy, python-format
|
||||
#| msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "购物车中的商品为您保留%(minutes)s分钟。"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
#, fuzzy
|
||||
#| msgid "The items in your cart are no longer reserved for you."
|
||||
msgid ""
|
||||
@@ -35965,20 +35955,20 @@ msgid ""
|
||||
"complete your order as long as they’re available."
|
||||
msgstr "你购物车里的物品将不再为你保留。"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Product description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "产品描述"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "预定期限"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr ""
|
||||
|
||||
@@ -38187,6 +38177,15 @@ msgstr "录入权限"
|
||||
msgid "Kosovo"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid ""
|
||||
#~| "Please enter your current password if you want to change your email "
|
||||
#~| "address or password."
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr "如果您想更改您的电子邮件地址或密码,请输入您的当前密码。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "You are receiving this email because you placed an order for the "
|
||||
#~ "following event:"
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-11-20 10:37+0000\n"
|
||||
"POT-Creation-Date: 2025-11-27 13:57+0000\n"
|
||||
"PO-Revision-Date: 2025-11-19 16:00+0000\n"
|
||||
"Last-Translator: Hijiri Umemoto <hijiri@umemoto.org>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.pretix.eu/"
|
||||
@@ -1190,7 +1190,7 @@ msgstr "給定名字"
|
||||
msgid "Family name"
|
||||
msgstr "家族姓氏"
|
||||
|
||||
#: pretix/base/email.py:203 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/email.py:218 pretix/base/exporters/items.py:157
|
||||
#: pretix/base/exporters/items.py:205 pretix/base/models/tax.py:381
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:35
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:54
|
||||
@@ -1204,7 +1204,7 @@ msgstr "家族姓氏"
|
||||
msgid "Default"
|
||||
msgstr "預設值"
|
||||
|
||||
#: pretix/base/email.py:210
|
||||
#: pretix/base/email.py:225
|
||||
msgid "Simple with logo"
|
||||
msgstr "簡單的標誌"
|
||||
|
||||
@@ -3235,7 +3235,7 @@ msgstr "保持我登錄狀態"
|
||||
msgid "This combination of credentials is not known to our system."
|
||||
msgstr "我們的系統不知道這種憑據組合。"
|
||||
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:96
|
||||
#: pretix/base/forms/auth.py:66 pretix/base/forms/user.py:94
|
||||
#: pretix/presale/forms/customer.py:385 pretix/presale/forms/customer.py:457
|
||||
msgid "For security reasons, please wait 5 minutes before you try again."
|
||||
msgstr "出於安全原因,請等待 5 分鐘,然後再重試。"
|
||||
@@ -3250,7 +3250,7 @@ msgid ""
|
||||
msgstr "你已經使用該電子郵件地址註冊,請使用登錄表單。"
|
||||
|
||||
#: pretix/base/forms/auth.py:157 pretix/base/forms/auth.py:215
|
||||
#: pretix/base/forms/user.py:95 pretix/control/forms/users.py:45
|
||||
#: pretix/base/forms/user.py:93 pretix/control/forms/users.py:45
|
||||
#: pretix/presale/forms/customer.py:295 pretix/presale/forms/customer.py:384
|
||||
msgid "Please enter the same password twice"
|
||||
msgstr "請輸入相同的密碼兩次"
|
||||
@@ -3260,7 +3260,7 @@ msgstr "請輸入相同的密碼兩次"
|
||||
msgid "Repeat password"
|
||||
msgstr "重複"
|
||||
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:101
|
||||
#: pretix/base/forms/auth.py:220 pretix/base/forms/user.py:99
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Your email address"
|
||||
@@ -3423,48 +3423,42 @@ msgstr "帶有身份驗證器應用程式的智能手機"
|
||||
msgid "WebAuthn-compatible hardware token (e.g. Yubikey)"
|
||||
msgstr "與WebAuthn相容的硬體token(例如Yubikey)"
|
||||
|
||||
#: pretix/base/forms/user.py:92
|
||||
msgid ""
|
||||
"Please enter your current password if you want to change your email address "
|
||||
"or password."
|
||||
msgstr "如果要更改電子郵件地址或密碼,請輸入當前密碼。"
|
||||
|
||||
#: pretix/base/forms/user.py:94 pretix/presale/forms/customer.py:383
|
||||
#: pretix/base/forms/user.py:92 pretix/presale/forms/customer.py:383
|
||||
#: pretix/presale/forms/customer.py:456
|
||||
msgid "The current password you entered was not correct."
|
||||
msgstr "你輸入的目前密碼不正確。"
|
||||
|
||||
#: pretix/base/forms/user.py:97
|
||||
#: pretix/base/forms/user.py:95
|
||||
msgid "Please choose a password different to your current one."
|
||||
msgstr "請選擇與你目前密碼不同的密碼。"
|
||||
|
||||
#: pretix/base/forms/user.py:107 pretix/presale/forms/customer.py:392
|
||||
#: pretix/base/forms/user.py:105 pretix/presale/forms/customer.py:392
|
||||
#: pretix/presale/forms/customer.py:461
|
||||
msgid "Your current password"
|
||||
msgstr "你目前的密碼"
|
||||
|
||||
#: pretix/base/forms/user.py:113 pretix/control/forms/users.py:50
|
||||
#: pretix/base/forms/user.py:111 pretix/control/forms/users.py:50
|
||||
#: pretix/presale/forms/customer.py:397
|
||||
msgid "New password"
|
||||
msgstr "新密碼"
|
||||
|
||||
#: pretix/base/forms/user.py:119 pretix/control/forms/users.py:54
|
||||
#: pretix/base/forms/user.py:117 pretix/control/forms/users.py:54
|
||||
msgid "Repeat new password"
|
||||
msgstr "重複新密碼"
|
||||
|
||||
#: pretix/base/forms/user.py:173 pretix/control/forms/users.py:43
|
||||
#: pretix/base/forms/user.py:176 pretix/control/forms/users.py:43
|
||||
msgid ""
|
||||
"There already is an account associated with this email address. Please "
|
||||
"choose a different one."
|
||||
msgstr "已有一個與此電子郵件地址有關聯的帳戶。請選擇其他一個。"
|
||||
|
||||
#: pretix/base/forms/user.py:176
|
||||
#: pretix/base/forms/user.py:179
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "Old email address"
|
||||
msgstr "電子郵箱位址"
|
||||
|
||||
#: pretix/base/forms/user.py:177
|
||||
#: pretix/base/forms/user.py:180
|
||||
#, fuzzy
|
||||
#| msgid "Email address"
|
||||
msgid "New email address"
|
||||
@@ -3646,7 +3640,7 @@ msgstr ""
|
||||
"{from_date}\n"
|
||||
"直到{to_date}"
|
||||
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:511
|
||||
#: pretix/base/invoicing/pdf.py:609 pretix/base/services/mail.py:512
|
||||
#, python-brace-format
|
||||
msgctxt "invoice"
|
||||
msgid "Invoice {num}"
|
||||
@@ -4291,7 +4285,7 @@ msgstr "如果關閉,你將不會收到任何通知。"
|
||||
#: pretix/control/templates/pretixcontrol/user/staff_session_list.html:15
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:4
|
||||
#: pretix/control/templates/pretixcontrol/users/form.html:6
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:149
|
||||
#: pretix/control/views/organizer.py:170 tests/base/test_mail.py:157
|
||||
msgid "User"
|
||||
msgstr "使用者"
|
||||
|
||||
@@ -7173,7 +7167,7 @@ msgstr "日期"
|
||||
#: pretix/base/notifications.py:200
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:755
|
||||
#: pretix/plugins/reports/accountingreport.py:318
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:442
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:446
|
||||
msgid "Net total"
|
||||
msgstr "淨總額"
|
||||
|
||||
@@ -7185,8 +7179,8 @@ msgstr "待處理金額"
|
||||
msgid "Purchased products"
|
||||
msgstr "購買的商品"
|
||||
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:384
|
||||
#: pretix/base/services/placeholders.py:393
|
||||
#: pretix/base/notifications.py:223 pretix/base/services/placeholders.py:415
|
||||
#: pretix/base/services/placeholders.py:424
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:151
|
||||
msgid "View order details"
|
||||
msgstr "查看訂單詳情"
|
||||
@@ -7646,10 +7640,10 @@ msgstr "費用包括附加費"
|
||||
|
||||
#: pretix/base/pdf.py:185 pretix/base/pdf.py:343
|
||||
#: pretix/base/services/invoices.py:582
|
||||
#: pretix/base/services/placeholders.py:571
|
||||
#: pretix/base/services/placeholders.py:653
|
||||
#: pretix/base/services/placeholders.py:669
|
||||
#: pretix/base/services/placeholders.py:678 pretix/control/views/event.py:909
|
||||
#: pretix/base/services/placeholders.py:602
|
||||
#: pretix/base/services/placeholders.py:687
|
||||
#: pretix/base/services/placeholders.py:703
|
||||
#: pretix/base/services/placeholders.py:712 pretix/control/views/event.py:909
|
||||
msgid "John Doe"
|
||||
msgstr "無名氏"
|
||||
|
||||
@@ -7976,7 +7970,7 @@ msgid "Attendee name for salutation"
|
||||
msgstr "參與者的稱呼"
|
||||
|
||||
#: pretix/base/pdf.py:667 pretix/base/pdf.py:690
|
||||
#: pretix/base/services/placeholders.py:696
|
||||
#: pretix/base/services/placeholders.py:730
|
||||
#: pretix/control/forms/organizer.py:664
|
||||
msgid "Mr Doe"
|
||||
msgstr "無名氏"
|
||||
@@ -8692,7 +8686,7 @@ msgstr ""
|
||||
msgid "You are receiving this email because you placed an order for {event}."
|
||||
msgstr "你收到此電子郵件是因為你下了 {event} 訂單。"
|
||||
|
||||
#: pretix/base/services/mail.py:494
|
||||
#: pretix/base/services/mail.py:495
|
||||
msgctxt "attachment_filename"
|
||||
msgid "Calendar invite"
|
||||
msgstr "日曆邀請"
|
||||
@@ -9081,33 +9075,33 @@ msgid ""
|
||||
"contact the event organizer for further information."
|
||||
msgstr "嘗試將錢退還給你時出錯。請聯繫活動組織者以獲取更多資訊。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:469
|
||||
#: pretix/base/services/placeholders.py:478
|
||||
#: pretix/base/services/placeholders.py:500
|
||||
#: pretix/base/services/placeholders.py:509
|
||||
#: pretix/base/templates/pretixbase/email/order_details.html:49
|
||||
msgid "View registration details"
|
||||
msgstr "查看註冊詳細資訊"
|
||||
|
||||
#: pretix/base/services/placeholders.py:575
|
||||
#: pretix/base/services/placeholders.py:606
|
||||
msgid "Sample Corporation"
|
||||
msgstr "樣本公司"
|
||||
|
||||
#: pretix/base/services/placeholders.py:615
|
||||
#: pretix/base/services/placeholders.py:647
|
||||
msgid "Sample Admission Ticket"
|
||||
msgstr "入場門票樣本"
|
||||
|
||||
#: pretix/base/services/placeholders.py:657
|
||||
#: pretix/base/services/placeholders.py:691
|
||||
msgid "An individual text with a reason can be inserted here."
|
||||
msgstr "可以在此處插入帶有原因的單項文本。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:661
|
||||
#: pretix/base/services/placeholders.py:695
|
||||
msgid "The amount has been charged to your card."
|
||||
msgstr "該金額已從你的卡中扣除。"
|
||||
|
||||
#: pretix/base/services/placeholders.py:665
|
||||
#: pretix/base/services/placeholders.py:699
|
||||
msgid "Please transfer money to this bank account: 9999-9999-9999-9999"
|
||||
msgstr "請將錢轉入此銀行帳戶:9999-9999-9999-9999"
|
||||
|
||||
#: pretix/base/services/placeholders.py:765
|
||||
#: pretix/base/services/placeholders.py:799
|
||||
#: pretix/control/views/organizer.py:348
|
||||
msgid "This value will be replaced based on dynamic parameters."
|
||||
msgstr "此值將根據動態參數進行替換。"
|
||||
@@ -17261,7 +17255,7 @@ msgstr "門票"
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:4
|
||||
#: pretix/control/templates/pretixcontrol/event/tax.html:6
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:764
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:453
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:457
|
||||
msgid "Taxes"
|
||||
msgstr "稅"
|
||||
|
||||
@@ -21489,7 +21483,7 @@ msgstr "只能使用優惠券購買"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:673
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:723
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:360
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:415
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:419
|
||||
#, python-format
|
||||
msgid "<strong>plus</strong> %(rate)s%% %(taxname)s"
|
||||
msgstr "<strong>加上</strong>%(rate)s%% %(taxname)s"
|
||||
@@ -21498,7 +21492,7 @@ msgstr "<strong>加上</strong>%(rate)s%% %(taxname)s"
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:683
|
||||
#: pretix/control/templates/pretixcontrol/order/index.html:733
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:370
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:425
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:429
|
||||
#, python-format
|
||||
msgid "incl. %(rate)s%% %(taxname)s"
|
||||
msgstr "包含. %(rate)s%% %(taxname)s"
|
||||
@@ -22521,7 +22515,7 @@ msgstr "不安全"
|
||||
#: pretix/plugins/reports/exporters.py:446
|
||||
#: pretix/plugins/reports/exporters.py:638
|
||||
#: pretix/plugins/reports/exporters.py:969
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:465
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:469
|
||||
msgid "Total"
|
||||
msgstr "全部"
|
||||
|
||||
@@ -29608,7 +29602,7 @@ msgid "Upload time"
|
||||
msgstr "上傳時間"
|
||||
|
||||
#: pretix/plugins/checkinlists/exporters.py:830
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:519
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:523
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:52
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:148
|
||||
msgid "OK"
|
||||
@@ -33198,42 +33192,42 @@ msgstr "再向購物車添加 %(item)s。你的購物車中當前有 %(count)s
|
||||
msgid "Current value:"
|
||||
msgstr "當前數值:"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:467
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:471
|
||||
#, python-format
|
||||
msgid "One product"
|
||||
msgid_plural "%(num)s products"
|
||||
msgstr[0] "%(num)s的產品"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:481
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:485
|
||||
#, python-format
|
||||
msgid "incl. %(tax_sum)s taxes"
|
||||
msgstr "含%(tax_sum)s 稅"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:501
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#, python-format
|
||||
msgid "The items in your cart are reserved for you for %(minutes)s minutes."
|
||||
msgstr "購物車中的商品將為你保留%(minutes)s分鐘。"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:505
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:509
|
||||
msgid ""
|
||||
"The items in your cart are no longer reserved for you. You can still "
|
||||
"complete your order as long as they’re available."
|
||||
msgstr "你購物車中的物品不再為你保留。只要可用,你仍然可以完成訂單。"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:510
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:514
|
||||
#: pretix/presale/templates/pretixpresale/fragment_modals.html:48
|
||||
#, fuzzy
|
||||
#| msgid "Event description"
|
||||
msgid "Renew reservation"
|
||||
msgstr "活動描述"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:522
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:526
|
||||
#, fuzzy
|
||||
#| msgid "Reservation period"
|
||||
msgid "Reservation renewed"
|
||||
msgstr "保留期"
|
||||
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:528
|
||||
#: pretix/presale/templates/pretixpresale/event/fragment_cart.html:532
|
||||
msgid "Overview of your ordered products."
|
||||
msgstr "你訂購的產品的概覽。"
|
||||
|
||||
@@ -35242,6 +35236,11 @@ msgstr "寫入權限"
|
||||
msgid "Kosovo"
|
||||
msgstr "柯索沃"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please enter your current password if you want to change your email "
|
||||
#~ "address or password."
|
||||
#~ msgstr "如果要更改電子郵件地址或密碼,請輸入當前密碼。"
|
||||
|
||||
#, python-brace-format
|
||||
#~ msgid ""
|
||||
#~ "You are requesting scope \"{scope}\" but provider only supports these: "
|
||||
|
||||
@@ -41,15 +41,20 @@ for app in apps.get_app_configs():
|
||||
if hasattr(app, 'PretixPluginMeta'):
|
||||
if importlib.util.find_spec(app.name + '.urls'):
|
||||
urlmod = importlib.import_module(app.name + '.urls')
|
||||
single_plugin_patterns = []
|
||||
|
||||
if hasattr(urlmod, 'event_patterns'):
|
||||
patterns = plugin_event_urls(urlmod.event_patterns, plugin=app.name)
|
||||
raw_plugin_patterns.append(
|
||||
re_path(r'^(?P<event>[^/]+)/', include((patterns, app.label)))
|
||||
single_plugin_patterns.append(
|
||||
re_path(r'^(?P<event>[^/]+)/', include(patterns))
|
||||
)
|
||||
|
||||
if hasattr(urlmod, 'organizer_patterns'):
|
||||
patterns = plugin_event_urls(urlmod.organizer_patterns, plugin=app.name)
|
||||
single_plugin_patterns += plugin_event_urls(urlmod.organizer_patterns, plugin=app.name)
|
||||
|
||||
if single_plugin_patterns:
|
||||
raw_plugin_patterns.append(
|
||||
re_path(r'', include((patterns, app.label)))
|
||||
re_path(r'', include((single_plugin_patterns, app.label)))
|
||||
)
|
||||
|
||||
plugin_patterns = [
|
||||
|
||||
@@ -42,15 +42,20 @@ for app in apps.get_app_configs():
|
||||
if hasattr(app, 'PretixPluginMeta'):
|
||||
if importlib.util.find_spec(app.name + '.urls'):
|
||||
urlmod = importlib.import_module(app.name + '.urls')
|
||||
if hasattr(urlmod, 'event_patterns'):
|
||||
patterns = plugin_event_urls(urlmod.event_patterns, plugin=app.name)
|
||||
raw_plugin_patterns.append(
|
||||
re_path(r'^(?P<event>[^/]+)/', include((patterns, app.label)))
|
||||
)
|
||||
single_plugin_patterns = []
|
||||
|
||||
if hasattr(urlmod, 'organizer_patterns'):
|
||||
patterns = plugin_event_urls(urlmod.organizer_patterns, plugin=app.name)
|
||||
single_plugin_patterns += plugin_event_urls(urlmod.organizer_patterns, plugin=app.name)
|
||||
|
||||
if hasattr(urlmod, 'event_patterns'):
|
||||
plugin_event_patterns = plugin_event_urls(urlmod.event_patterns, plugin=app.name)
|
||||
single_plugin_patterns.append(
|
||||
re_path(r'^(?P<event>[^/]+)/', include(plugin_event_patterns))
|
||||
)
|
||||
|
||||
if single_plugin_patterns:
|
||||
raw_plugin_patterns.append(
|
||||
re_path(r'', include((patterns, app.label)))
|
||||
re_path(r'', include((single_plugin_patterns, app.label)))
|
||||
)
|
||||
|
||||
plugin_patterns = [
|
||||
|
||||
@@ -46,12 +46,12 @@ from i18nfield.forms import I18nTextInput
|
||||
from i18nfield.strings import LazyI18nString
|
||||
from localflavor.generic.forms import BICFormField, IBANFormField
|
||||
from localflavor.generic.validators import IBANValidator
|
||||
from text_unidecode import unidecode
|
||||
|
||||
from pretix.base.forms import I18nMarkdownTextarea
|
||||
from pretix.base.models import InvoiceAddress, Order, OrderPayment, OrderRefund
|
||||
from pretix.base.payment import BasePaymentProvider
|
||||
from pretix.base.templatetags.money import money_filter
|
||||
from pretix.helpers.payment import generate_payment_qr_codes
|
||||
from pretix.plugins.banktransfer.templatetags.ibanformat import ibanformat
|
||||
from pretix.presale.views.cart import cart_session
|
||||
|
||||
@@ -313,51 +313,6 @@ class BankTransfer(BasePaymentProvider):
|
||||
t += str(self.settings.get('bank_details', as_type=LazyI18nString))
|
||||
return t
|
||||
|
||||
def swiss_qrbill(self, payment):
|
||||
if not self.settings.get('bank_details_sepa_iban') or not self.settings.get('bank_details_sepa_iban')[:2] in ('CH', 'LI'):
|
||||
return
|
||||
if self.event.currency not in ('EUR', 'CHF'):
|
||||
return
|
||||
if not self.event.settings.invoice_address_from or not self.event.settings.invoice_address_from_country:
|
||||
return
|
||||
|
||||
data_fields = [
|
||||
'SPC',
|
||||
'0200',
|
||||
'1',
|
||||
self.settings.get('bank_details_sepa_iban'),
|
||||
'K',
|
||||
self.settings.get('bank_details_sepa_name')[:70],
|
||||
self.event.settings.invoice_address_from.replace('\n', ', ')[:70],
|
||||
(self.event.settings.invoice_address_from_zipcode + ' ' + self.event.settings.invoice_address_from_city)[:70],
|
||||
'',
|
||||
'',
|
||||
str(self.event.settings.invoice_address_from_country),
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
'', # rfu
|
||||
str(payment.amount),
|
||||
self.event.currency,
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'', # debtor address
|
||||
'NON',
|
||||
'', # structured reference
|
||||
self._code(payment.order),
|
||||
'EPD',
|
||||
]
|
||||
|
||||
data_fields = [unidecode(d or '') for d in data_fields]
|
||||
return '\r\n'.join(data_fields)
|
||||
|
||||
def payment_pending_render(self, request: HttpRequest, payment: OrderPayment):
|
||||
template = get_template('pretixplugins/banktransfer/pending.html')
|
||||
ctx = {
|
||||
@@ -367,13 +322,18 @@ class BankTransfer(BasePaymentProvider):
|
||||
'amount': payment.amount,
|
||||
'payment_info': payment.info_data,
|
||||
'settings': self.settings,
|
||||
'swiss_qrbill': self.swiss_qrbill(payment),
|
||||
'eu_barcodes': self.event.currency == 'EUR',
|
||||
'payment_qr_codes': generate_payment_qr_codes(
|
||||
event=self.event,
|
||||
code=self._code(payment.order),
|
||||
amount=payment.amount,
|
||||
bank_details_sepa_bic=self.settings.get('bank_details_sepa_bic'),
|
||||
bank_details_sepa_name=self.settings.get('bank_details_sepa_name'),
|
||||
bank_details_sepa_iban=self.settings.get('bank_details_sepa_iban'),
|
||||
) if self.settings.bank_details_type == "sepa" else None,
|
||||
'pending_description': self.settings.get('pending_description', as_type=LazyI18nString),
|
||||
'details': self.settings.get('bank_details', as_type=LazyI18nString),
|
||||
'has_invoices': payment.order.invoices.exists(),
|
||||
}
|
||||
ctx['any_barcodes'] = ctx['swiss_qrbill'] or ctx['eu_barcodes']
|
||||
return template.render(ctx, request=request)
|
||||
|
||||
def payment_control_render(self, request: HttpRequest, payment: OrderPayment) -> str:
|
||||
|
||||
@@ -34,8 +34,10 @@
|
||||
|
||||
import json
|
||||
import logging
|
||||
import operator
|
||||
import re
|
||||
from decimal import Decimal
|
||||
from functools import reduce
|
||||
|
||||
import dateutil.parser
|
||||
from celery.exceptions import MaxRetriesExceededError
|
||||
@@ -117,20 +119,26 @@ def _find_order_for_code(base_qs, code):
|
||||
pass
|
||||
|
||||
|
||||
def _find_order_for_invoice_id(base_qs, prefix, number):
|
||||
def _find_order_for_invoice_id(base_qs, prefixes, number):
|
||||
try:
|
||||
# Working with __iregex here is an experiment, if this turns out to be too slow in production
|
||||
# we might need to switch to a different approach.
|
||||
r = [
|
||||
Q(
|
||||
prefix__istartswith=prefix, # redundant, but hopefully makes it a little faster
|
||||
full_invoice_no__iregex=prefix + r'[\- ]*0*' + number
|
||||
)
|
||||
for prefix in set(prefixes)
|
||||
]
|
||||
return base_qs.select_related('order').get(
|
||||
prefix__istartswith=prefix, # redundant, but hopefully makes it a little faster
|
||||
full_invoice_no__iregex=prefix + r'[\- ]*0*' + number
|
||||
reduce(operator.or_, r)
|
||||
).order
|
||||
except (Invoice.DoesNotExist, Invoice.MultipleObjectsReturned):
|
||||
pass
|
||||
|
||||
|
||||
@transaction.atomic
|
||||
def _handle_transaction(trans: BankTransaction, matches: tuple, event: Event = None, organizer: Organizer = None):
|
||||
def _handle_transaction(trans: BankTransaction, matches: tuple, regex_match_to_slug, event: Event = None, organizer: Organizer = None):
|
||||
orders = []
|
||||
if event:
|
||||
for slug, code in matches:
|
||||
@@ -139,18 +147,19 @@ def _handle_transaction(trans: BankTransaction, matches: tuple, event: Event = N
|
||||
if order.code not in {o.code for o in orders}:
|
||||
orders.append(order)
|
||||
else:
|
||||
order = _find_order_for_invoice_id(Invoice.objects.filter(event=event), slug, code)
|
||||
order = _find_order_for_invoice_id(Invoice.objects.filter(event=event), (slug, regex_match_to_slug.get(slug, slug)), code)
|
||||
if order and order.code not in {o.code for o in orders}:
|
||||
orders.append(order)
|
||||
else:
|
||||
qs = Order.objects.filter(event__organizer=organizer)
|
||||
for slug, code in matches:
|
||||
order = _find_order_for_code(qs.filter(event__slug__iexact=slug), code)
|
||||
original_slug = regex_match_to_slug.get(slug, slug)
|
||||
order = _find_order_for_code(qs.filter(Q(event__slug__iexact=slug) | Q(event__slug__iexact=original_slug)), code)
|
||||
if order:
|
||||
if order.code not in {o.code for o in orders}:
|
||||
orders.append(order)
|
||||
else:
|
||||
order = _find_order_for_invoice_id(Invoice.objects.filter(event__organizer=organizer), slug, code)
|
||||
order = _find_order_for_invoice_id(Invoice.objects.filter(event__organizer=organizer), (slug, original_slug), code)
|
||||
if order and order.code not in {o.code for o in orders}:
|
||||
orders.append(order)
|
||||
|
||||
@@ -366,22 +375,37 @@ def process_banktransfers(self, job: int, data: list) -> None:
|
||||
transactions = _get_unknown_transactions(job, data, **job.owner_kwargs)
|
||||
|
||||
# Match order codes
|
||||
regex_match_to_slug = {}
|
||||
code_len_agg = Order.objects.filter(event__organizer=job.organizer).annotate(
|
||||
clen=Length('code')
|
||||
).aggregate(min=Min('clen'), max=Max('clen'))
|
||||
if job.event:
|
||||
prefixes = {job.event.slug.upper()}
|
||||
prefixes = {job.event.slug.upper(), job.event.slug.upper().replace("-", "")}
|
||||
if "-" in job.event.slug:
|
||||
regex_match_to_slug[job.event.slug.upper().replace("-", "")] = job.event.slug
|
||||
else:
|
||||
prefixes = {e.slug.upper() for e in job.organizer.events.all()}
|
||||
prefixes = set()
|
||||
for e in job.organizer.events.all():
|
||||
prefixes.add(e.slug.upper())
|
||||
if "-" in e.slug:
|
||||
prefixes.add(e.slug.upper().replace("-", ""))
|
||||
regex_match_to_slug[e.slug.upper().replace("-", "")] = e.slug
|
||||
|
||||
# Match invoice numbers
|
||||
inr_len_agg = Invoice.objects.filter(event__organizer=job.organizer).annotate(
|
||||
clen=Length('invoice_no')
|
||||
).aggregate(min=Min('clen'), max=Max('clen'))
|
||||
if job.event:
|
||||
prefixes |= {p.rstrip(' -') for p in Invoice.objects.filter(event=job.event).distinct().values_list('prefix', flat=True)}
|
||||
invoice_prefixes = Invoice.objects.filter(event=job.event)
|
||||
else:
|
||||
prefixes |= {p.rstrip(' -') for p in Invoice.objects.filter(event__organizer=job.organizer).distinct().values_list('prefix', flat=True)}
|
||||
invoice_prefixes = Invoice.objects.filter(event__organizer=job.organizer)
|
||||
for p in invoice_prefixes.order_by().distinct().values_list('prefix', flat=True):
|
||||
prefix = p.rstrip(" -")
|
||||
prefixes.add(prefix)
|
||||
if "-" in prefix:
|
||||
prefix_nodash = prefix.replace("-", "")
|
||||
prefixes.add(prefix_nodash)
|
||||
regex_match_to_slug[prefix_nodash] = prefix
|
||||
|
||||
pattern = re.compile(
|
||||
"(%s)[ \\-_]*([A-Z0-9]{%s,%s})" % (
|
||||
@@ -409,9 +433,9 @@ def process_banktransfers(self, job: int, data: list) -> None:
|
||||
|
||||
if matches:
|
||||
if job.event:
|
||||
_handle_transaction(trans, matches, event=job.event)
|
||||
_handle_transaction(trans, matches, regex_match_to_slug, event=job.event)
|
||||
else:
|
||||
_handle_transaction(trans, matches, organizer=job.organizer)
|
||||
_handle_transaction(trans, matches, regex_match_to_slug, organizer=job.organizer)
|
||||
else:
|
||||
trans.state = BankTransaction.STATE_NOMATCH
|
||||
trans.save()
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{% load i18n %}
|
||||
{% load l10n %}
|
||||
{% load commadecimal %}
|
||||
{% load static %}
|
||||
{% load dotdecimal %}
|
||||
{% load ibanformat %}
|
||||
{% load money %}
|
||||
@@ -17,7 +16,7 @@
|
||||
{% endblocktrans %}</p>
|
||||
|
||||
<div class="row">
|
||||
<div class="{% if settings.bank_details_type == "sepa" %}col-md-6{% else %}col-md-12{% endif %} col-xs-12">
|
||||
<div class="{% if payment_qr_codes %}col-md-6{% else %}col-md-12{% endif %} col-xs-12">
|
||||
<dl class="dl-horizontal">
|
||||
<dt>{% trans "Reference code (important):" %}</dt><dd><b>{{ code }}</b></dd>
|
||||
<dt>{% trans "Amount:" %}</dt><dd>{{ amount|money:event.currency }}</dd>
|
||||
@@ -36,94 +35,7 @@
|
||||
{% trans "We will send you an email as soon as we received your payment." %}
|
||||
</p>
|
||||
</div>
|
||||
{% if settings.bank_details_type == "sepa" and any_barcodes %}
|
||||
<div class="tabcontainer col-md-6 col-sm-6 hidden-xs text-center js-only blank-after">
|
||||
<div id="banktransfer_qrcodes_tabs_content" class="tabpanels blank-after">
|
||||
{% if swiss_qrbill %}
|
||||
<div id="banktransfer_qrcodes_qrbill"
|
||||
role="tabpanel"
|
||||
tabindex="0"
|
||||
aria-labelledby="banktransfer_qrcodes_qrbill_tab"
|
||||
>
|
||||
<div class="banktransfer-swiss-cross-overlay" role="figure" aria-labelledby="banktransfer_qrcodes_qrbill_tab banktransfer_qrcodes_label">
|
||||
<svg class="banktransfer-swiss-cross" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19.8 19.8"><path stroke="#fff" stroke-width="1.436" d="M.7.7h18.4v18.4H.7z"/><path fill="#fff" d="M8.3 4h3.3v11H8.3z"/><path fill="#fff" d="M4.4 7.9h11v3.3h-11z"/></svg>
|
||||
<script type="text/plain" data-size="150" data-replace-with-qr data-desc="{% trans 'Scan this image with your banking app’s QR-Reader to start the payment process.' %}">{{swiss_qrbill}}</script>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% if eu_barcodes %}
|
||||
<div id="banktransfer_qrcodes_girocode"
|
||||
role="tabpanel"
|
||||
tabindex="0"
|
||||
{{ swiss_qrbill|yesno:'hidden,' }}
|
||||
aria-labelledby="banktransfer_qrcodes_girocode_tab"
|
||||
>
|
||||
<div role="figure" aria-labelledby="banktransfer_qrcodes_girocode_tab banktransfer_qrcodes_label">
|
||||
<script type="text/plain" data-size="150" data-replace-with-qr data-desc="{% trans 'Scan this image with your banking app’s QR-Reader to start the payment process.' %}">BCD
|
||||
002
|
||||
2
|
||||
SCT
|
||||
{{ settings.bank_details_sepa_bic }}
|
||||
{{ settings.bank_details_sepa_name|unidecode }}
|
||||
{{ settings.bank_details_sepa_iban }}
|
||||
{{ event.currency }}{{ amount|dotdecimal }}
|
||||
|
||||
|
||||
{{ code }}
|
||||
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<div id="banktransfer_qrcodes_bezahlcode"
|
||||
role="tabpanel"
|
||||
tabindex="0"
|
||||
hidden
|
||||
aria-labelledby="banktransfer_qrcodes_bezahlcode_tab"
|
||||
>
|
||||
<a aria-label="{% trans "Open BezahlCode in your banking app to start the payment process." %}" href="bank://singlepaymentsepa?name={{ settings.bank_details_sepa_name|urlencode }}&iban={{ settings.bank_details_sepa_iban }}&bic={{ settings.bank_details_sepa_bic }}&amount={{ amount|commadecimal }}&reason={{ code }}¤cy={{ event.currency }}">
|
||||
<div role="figure" aria-labelledby="banktransfer_qrcodes_bezahlcode_tab banktransfer_qrcodes_label">
|
||||
<script type="text/plain" data-size="150" data-replace-with-qr data-desc="{% trans 'Scan this image with your banking app’s QR-Reader to start the payment process.' %}">bank://singlepaymentsepa?name={{ settings.bank_details_sepa_name|urlencode }}&iban={{ settings.bank_details_sepa_iban }}&bic={{ settings.bank_details_sepa_bic }}&amount={{ amount|commadecimal }}&reason={{ code }}¤cy={{ event.currency }}</script>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
<div id="banktransfer_qrcodes_tabs" role="tablist" aria-labelledby="banktransfer_qrcodes_label" class="blank-after btn-group">
|
||||
{% if swiss_qrbill %}
|
||||
<button
|
||||
class="btn btn-default"
|
||||
id="banktransfer_qrcodes_qrbill_tab"
|
||||
type="button"
|
||||
role="tab"
|
||||
aria-controls="banktransfer_qrcodes_qrbill"
|
||||
aria-selected="true"
|
||||
tabindex="-1">QR-bill</button>
|
||||
{% endif %}
|
||||
{% if eu_barcodes %}
|
||||
<button
|
||||
class="btn btn-default"
|
||||
id="banktransfer_qrcodes_girocode_tab"
|
||||
type="button"
|
||||
role="tab"
|
||||
aria-controls="banktransfer_qrcodes_girocode"
|
||||
aria-selected="{{ swiss_qrbill|yesno:"false,true" }}"
|
||||
tabindex="-1">EPC-QR</button>
|
||||
<button
|
||||
class="btn btn-default"
|
||||
id="banktransfer_qrcodes_bezahlcode_tab"
|
||||
type="button"
|
||||
role="tab"
|
||||
aria-controls="banktransfer_qrcodes_bezahlcode"
|
||||
aria-selected="false"
|
||||
tabindex="-1">BezahlCode</button>
|
||||
{% endif %}
|
||||
</div>
|
||||
<p class="text-muted" id="banktransfer_qrcodes_label">
|
||||
{% trans "Scan the QR code with your banking app" %}
|
||||
</p>
|
||||
</div>
|
||||
{% if payment_qr_codes %}
|
||||
{% include "pretixpresale/event/payment_qr_codes.html" %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% if swiss_qrbill %}
|
||||
<link rel="stylesheet" href="{% static "pretixplugins/banktransfer/swisscross.css" %}">
|
||||
{% endif %}
|
||||
</div>
|
||||
@@ -711,7 +711,7 @@ class PaypalMethod(BasePaymentProvider):
|
||||
description = '{prefix}{orderstring}{postfix}'.format(
|
||||
prefix='{} '.format(self.settings.prefix) if self.settings.prefix else '',
|
||||
orderstring=__('Order {order} for {event}').format(
|
||||
event=request.event.name,
|
||||
event=self.event.name,
|
||||
order=payment.order.code
|
||||
),
|
||||
postfix=' {}'.format(self.settings.postfix) if self.settings.postfix else ''
|
||||
|
||||
@@ -644,7 +644,9 @@ class ReportExporter(ReportlabExportMixin, BaseExporter):
|
||||
FontFallbackParagraph(
|
||||
_("Pending payments at {datetime}").format(
|
||||
datetime=date_format(
|
||||
df_start - datetime.timedelta.resolution,
|
||||
(df_start - datetime.timedelta.resolution).astimezone(
|
||||
self.timezone
|
||||
),
|
||||
"SHORT_DATETIME_FORMAT",
|
||||
)
|
||||
),
|
||||
@@ -694,7 +696,9 @@ class ReportExporter(ReportlabExportMixin, BaseExporter):
|
||||
Paragraph(
|
||||
_("Pending payments at {datetime}").format(
|
||||
datetime=date_format(
|
||||
(df_end or now()) - datetime.timedelta.resolution,
|
||||
((df_end or now()) - datetime.timedelta.resolution).astimezone(
|
||||
self.timezone
|
||||
),
|
||||
"SHORT_DATETIME_FORMAT",
|
||||
)
|
||||
),
|
||||
@@ -751,7 +755,9 @@ class ReportExporter(ReportlabExportMixin, BaseExporter):
|
||||
Paragraph(
|
||||
_("Total gift card value at {datetime}").format(
|
||||
datetime=date_format(
|
||||
df_start - datetime.timedelta.resolution,
|
||||
(df_start - datetime.timedelta.resolution).astimezone(
|
||||
self.timezone
|
||||
),
|
||||
"SHORT_DATETIME_FORMAT",
|
||||
)
|
||||
),
|
||||
@@ -789,7 +795,9 @@ class ReportExporter(ReportlabExportMixin, BaseExporter):
|
||||
Paragraph(
|
||||
_("Total gift card value at {datetime}").format(
|
||||
datetime=date_format(
|
||||
(df_end or now()) - datetime.timedelta.resolution,
|
||||
((df_end or now()) - datetime.timedelta.resolution).astimezone(
|
||||
self.timezone
|
||||
),
|
||||
"SHORT_DATETIME_FORMAT",
|
||||
)
|
||||
),
|
||||
|
||||
@@ -137,7 +137,7 @@ logger = logging.getLogger('pretix.plugins.stripe')
|
||||
# Real-time payments
|
||||
# - Swish: ✓
|
||||
# - PayNow: ✗
|
||||
# - PromptPay: ✗
|
||||
# - PromptPay: ✓
|
||||
# - Pix: ✗
|
||||
#
|
||||
# Vouchers
|
||||
@@ -428,6 +428,14 @@ class StripeSettingsHolder(BasePaymentProvider):
|
||||
'before they work properly.'),
|
||||
required=False,
|
||||
)),
|
||||
('method_promptpay',
|
||||
forms.BooleanField(
|
||||
label='PromptPay',
|
||||
disabled=self.event.currency != 'THB',
|
||||
help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account '
|
||||
'before they work properly.'),
|
||||
required=False,
|
||||
)),
|
||||
('method_swish',
|
||||
forms.BooleanField(
|
||||
label=_('Swish'),
|
||||
@@ -1842,6 +1850,30 @@ class StripeSwish(StripeRedirectMethod):
|
||||
}
|
||||
|
||||
|
||||
class StripePromptPay(StripeRedirectMethod):
|
||||
identifier = 'stripe_promptpay'
|
||||
verbose_name = _('PromptPay via Stripe')
|
||||
public_name = 'PromptPay'
|
||||
method = 'promptpay'
|
||||
confirmation_method = 'automatic'
|
||||
explanation = _(
|
||||
'This payment method is available to PromptPay users in Thailand. Please have your app ready.'
|
||||
)
|
||||
|
||||
def is_allowed(self, request: HttpRequest, total: Decimal=None) -> bool:
|
||||
return super().is_allowed(request, total) and request.event.currency == "THB"
|
||||
|
||||
def _payment_intent_kwargs(self, request, payment):
|
||||
return {
|
||||
"payment_method_data": {
|
||||
"type": "promptpay",
|
||||
"billing_details": {
|
||||
"email": payment.order.email,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
class StripeTwint(StripeRedirectMethod):
|
||||
identifier = 'stripe_twint'
|
||||
verbose_name = _('TWINT via Stripe')
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user