mirror of
https://github.com/pretix/pretix.git
synced 2026-05-08 15:44:02 +00:00
Improve help texts
This commit is contained in:
@@ -96,12 +96,12 @@ class Event(LoggedModel):
|
|||||||
presale_end = models.DateTimeField(
|
presale_end = models.DateTimeField(
|
||||||
null=True, blank=True,
|
null=True, blank=True,
|
||||||
verbose_name=_("End of presale"),
|
verbose_name=_("End of presale"),
|
||||||
help_text=_("No products will be sold after this date."),
|
help_text=_("Optional. No products will be sold after this date."),
|
||||||
)
|
)
|
||||||
presale_start = models.DateTimeField(
|
presale_start = models.DateTimeField(
|
||||||
null=True, blank=True,
|
null=True, blank=True,
|
||||||
verbose_name=_("Start of presale"),
|
verbose_name=_("Start of presale"),
|
||||||
help_text=_("No products will be sold before this date."),
|
help_text=_("Optional. No products will be sold before this date."),
|
||||||
)
|
)
|
||||||
location = I18nTextField(
|
location = I18nTextField(
|
||||||
null=True, blank=True,
|
null=True, blank=True,
|
||||||
|
|||||||
@@ -288,7 +288,7 @@ class EventSettingsForm(SettingsForm):
|
|||||||
reservation_time = forms.IntegerField(
|
reservation_time = forms.IntegerField(
|
||||||
min_value=0,
|
min_value=0,
|
||||||
label=_("Reservation period"),
|
label=_("Reservation period"),
|
||||||
help_text=_("The number of minutes the items in a user's card are reserved for this user."),
|
help_text=_("The number of minutes the items in a user's cart are reserved for this user."),
|
||||||
)
|
)
|
||||||
imprint_url = forms.URLField(
|
imprint_url = forms.URLField(
|
||||||
label=_("Imprint URL"),
|
label=_("Imprint URL"),
|
||||||
|
|||||||
Reference in New Issue
Block a user