forked from CGM_Public/pretix_original
Fixed typos and a little phrasing. (#175)
Mostly in German translation, some small fixes in English text, too.
This commit is contained in:
committed by
Raphael Michel
parent
2ad5565db5
commit
34212841e2
@@ -180,7 +180,7 @@ class Item(LoggedModel):
|
||||
'either directly or via a quota.')
|
||||
)
|
||||
hide_without_voucher = models.BooleanField(
|
||||
verbose_name=_('This product will only be shown if a voucher is redeemed.'),
|
||||
verbose_name=_('This product will only be shown if a voucher matching the product is redeemed.'),
|
||||
default=False,
|
||||
help_text=_('This product will be hidden from the event page until the user enters a voucher '
|
||||
'code that is specifically tied to this product (and not via a quota).')
|
||||
|
||||
@@ -248,7 +248,7 @@ class Order(LoggedModel):
|
||||
|
||||
def _is_still_available(self) -> Union[bool, str]:
|
||||
error_messages = {
|
||||
'unavailable': _('Some of the ordered products were no longer available.'),
|
||||
'unavailable': _('Some of the ordered products are no longer available.'),
|
||||
}
|
||||
positions = self.positions.all().select_related('item', 'variation')
|
||||
quota_cache = {}
|
||||
|
||||
Reference in New Issue
Block a user