From 7ba620a762ee8a1cbdfad95e1f6b56e0296dd9d8 Mon Sep 17 00:00:00 2001 From: Richard Liu Date: Wed, 9 Oct 2024 02:31:14 -0700 Subject: [PATCH] copy fixes --- README.rst | 4 ++-- pretix_email_template_plugin/apps.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 518ff69..313be6f 100644 --- a/README.rst +++ b/README.rst @@ -1,9 +1,9 @@ -Email Template +Attendee email placeholder ========================== This is a plugin for `pretix`_. -Short description +Lets you use the {attendee_email} placeholder for email content that corresponds to an order's position. Development setup ----------------- diff --git a/pretix_email_template_plugin/apps.py b/pretix_email_template_plugin/apps.py index c4bc9aa..c2847e3 100644 --- a/pretix_email_template_plugin/apps.py +++ b/pretix_email_template_plugin/apps.py @@ -13,9 +13,9 @@ class PluginApp(PluginConfig): verbose_name = "Email template helper" class PretixPluginMeta: - name = gettext_lazy("Email Template") - author = "Your name" - description = gettext_lazy("More email template placeholders, such as {attendee_email}") + name = gettext_lazy("Attendee email placeholder") + author = "0xPARC team" + description = gettext_lazy("Lets you use the {attendee_email} placeholder for email content that corresponds to an order's position.") visible = True version = __version__ category = "FEATURE"