diff --git a/pretalx_venueless/apps.py b/pretalx_venueless/apps.py index 088fbcf..6f66de9 100644 --- a/pretalx_venueless/apps.py +++ b/pretalx_venueless/apps.py @@ -6,13 +6,13 @@ class PluginApp(AppConfig): name = "pretalx_venueless" - verbose_name = "Venueless integration" + verbose_name = "Eventyay video integration" class PretalxPluginMeta: - name = gettext_lazy("Venueless integration") - author = "Tobias Kunze" + name = gettext_lazy("Eventyay video integration") + author = "Eventyay" description = gettext_lazy( - "Venueless integration in pretalx: Notify venueless about new schedule releases!" + "Eventyay video integration in pretalx: Notify eventyay about new schedule releases!" ) visible = True version = __version__ diff --git a/pretalx_venueless/forms.py b/pretalx_venueless/forms.py index 07e26bd..a8e5db7 100644 --- a/pretalx_venueless/forms.py +++ b/pretalx_venueless/forms.py @@ -8,14 +8,14 @@ class VenuelessSettingsForm(I18nModelForm): token = forms.CharField( help_text=_( - "Generate a token with the trait 'world:api' in the Config -> Token Generator menu in Venueless. Leave empty to leave unchanged." + "Generate a token with the trait 'world:api' in the Config -> Token Generator menu in Eventyay video. Leave empty to leave unchanged." ), - label=_("Venueless Token"), + label=_("Eventyay video Token"), required=True, ) url = forms.URLField( - help_text=_("URL of your Venueless event"), - label=_("Venueless URL"), + help_text=_("URL of your Eventyay video event"), + label=_("Eventyay video URL"), required=True, ) return_url = forms.CharField(widget=forms.HiddenInput(), required=False) diff --git a/pretalx_venueless/models.py b/pretalx_venueless/models.py index 100eb90..8c70680 100644 --- a/pretalx_venueless/models.py +++ b/pretalx_venueless/models.py @@ -13,15 +13,15 @@ class VenuelessSettings(models.Model): ) token = models.TextField( help_text=_( - "Generate a token with the trait 'world:api' in the Config -> Token Generator menu in Venueless. Leave empty to leave unchanged." + "Generate a token with the trait 'world:api' in the Config -> Token Generator menu in Eventyay video. Leave empty to leave unchanged." ), - verbose_name=_("Venueless Token"), + verbose_name=_("Eventyay video Token"), null=True, blank=True, # for easier get_or_create ) url = models.URLField( - help_text=_("URL of your Venueless event"), - verbose_name=_("Venueless URL"), + help_text=_("URL of your Eventyay video event"), + verbose_name=_("Eventyay video URL"), null=True, blank=True, # for easier get_or_create ) @@ -30,29 +30,29 @@ class VenuelessSettings(models.Model): # settings required for join URLs show_join_link = models.BooleanField( help_text=_( - "If you enable this feature, speakers will find a venueless join button on their profile pages." + "If you enable this feature, speakers will find a Eventyay video join button on their profile pages." ), verbose_name=_("Show join button"), default=False, ) join_url = models.URLField( help_text=_("URL used for sign-up links"), - verbose_name=_("Venueless URL"), + verbose_name=_("Eventyay video URL"), null=True, blank=True, ) secret = models.TextField( - verbose_name=_("Venueless secret"), + verbose_name=_("Eventyay video secret"), null=True, blank=True, ) issuer = models.TextField( - verbose_name=_("Venueless issuer"), + verbose_name=_("Eventyay video issuer"), null=True, blank=True, ) audience = models.TextField( - verbose_name=_("Venueless audience"), + verbose_name=_("Eventyay video audience"), null=True, blank=True, ) diff --git a/pretalx_venueless/signals.py b/pretalx_venueless/signals.py index 750978d..53e3686 100644 --- a/pretalx_venueless/signals.py +++ b/pretalx_venueless/signals.py @@ -32,7 +32,7 @@ def navbar_info(sender, request, **kwargs): return [ { - "label": _("Venueless"), + "label": _("Eventyay video"), "url": reverse( "plugins:pretalx_venueless:settings", kwargs={ diff --git a/pretalx_venueless/templates/pretalx_venueless/settings.html b/pretalx_venueless/templates/pretalx_venueless/settings.html index 047797f..9a079ae 100644 --- a/pretalx_venueless/templates/pretalx_venueless/settings.html +++ b/pretalx_venueless/templates/pretalx_venueless/settings.html @@ -18,31 +18,31 @@ {% block content %} {% if connect_in_progress %} -

{% trans "Confirm your Venueless connection" %}

+

{% trans "Confirm your Eventyay video connection" %}

{% blocktranslate trimmed %} - Venueless is asking to connect to your pretalx event. If you confirm - this connection, pretalx will notify Venueless about all schedule changes. + Eventyay video is asking to connect to your pretalx event. If you confirm + this connection, pretalx will notify Eventyay video about all schedule changes. {% endblocktranslate %}
{% else %} -

{% trans "Venueless" %}

+

{% trans "Eventyay video" %}

{% endif %} {% if last_push %}
{% blocktranslate trimmed with last_push=last_push %} - Successfully connected to venueless. Data was last pushed on {{ last_push }}. + Successfully connected to Eventyay video. Data was last pushed on {{ last_push }}. {% endblocktranslate %}
{% elif not connect_in_progress %}
{% blocktranslate trimmed %} - Setting up the connection with Venueless will configure the pretalx settings - in Venueless, and will automatically push schedule changes to venueless users. - Please use Venueless to begin this process. Go to Config → Event in Venueless, + Setting up the connection with Eventyay video will configure the pretalx settings + in Eventyay video, and will automatically push schedule changes to Eventyay video users. + Please use Eventyay video to begin this process. Go to Config → Event in Eventyay video, and enter the following settings to create the connection: {% endblocktranslate %}