diff --git a/apps/participation/forms.py b/apps/participation/forms.py index 6611fcb..4d7704b 100644 --- a/apps/participation/forms.py +++ b/apps/participation/forms.py @@ -68,7 +68,7 @@ class RequestValidationForm(forms.Form): ) engagement = forms.BooleanField( - label=_("I engage myself to participate to the whole \"Correspondances\"."), + label=_("I engage myself to participate to the whole TFJM²."), required=True, ) diff --git a/apps/participation/models.py b/apps/participation/models.py index 2db89f7..561ec9e 100644 --- a/apps/participation/models.py +++ b/apps/participation/models.py @@ -21,7 +21,7 @@ from tfjm.matrix import Matrix, RoomPreset, RoomVisibility class Team(models.Model): """ - The Team model represents a real team that participates to the Correspondances. + The Team model represents a real team that participates to the TFJM². This only includes the registration detail. """ name = models.CharField( diff --git a/apps/participation/templates/participation/mails/request_validation.html b/apps/participation/templates/participation/mails/request_validation.html index 1156346..0f280fb 100644 --- a/apps/participation/templates/participation/mails/request_validation.html +++ b/apps/participation/templates/participation/mails/request_validation.html @@ -11,7 +11,7 @@ Bonjour {{ user.registration }},

L'équipe « {{ team.name }} » ({{ team.trigram }}) vient de demander à valider son équipe pour participer -au {{ team.participation.get_problem_display }} du TFJM² des Jeunes Mathématicien·ne·s. +au {{ team.participation.get_problem_display }} du TFJM². Vous pouvez décider d'accepter ou de refuser l'équipe en vous rendant sur la page de l'équipe : https://{{ domain }}{% url "participation:team_detail" pk=team.pk %} @@ -23,7 +23,7 @@ Cordialement,

-L'organisation du TFJM² des Jeunes Mathématicien·ne·s +L'organisation du TFJM²

diff --git a/apps/participation/templates/participation/mails/request_validation.txt b/apps/participation/templates/participation/mails/request_validation.txt index a1fbcd5..f68a12c 100644 --- a/apps/participation/templates/participation/mails/request_validation.txt +++ b/apps/participation/templates/participation/mails/request_validation.txt @@ -1,10 +1,10 @@ Bonjour {{ user.registration }}, L'équipe « {{ team.name }} » ({{ team.trigram }}) vient de demander à valider son équipe pour participer -au {{ team.participation.get_problem_display }} du TFJM² des Jeunes Mathématicien·ne·s. +au {{ team.participation.get_problem_display }} du TFJM². Vous pouvez décider d'accepter ou de refuser l'équipe en vous rendant sur la page de l'équipe : https://{{ domain }}{% url "participation:team_detail" pk=team.pk %} Cordialement, -L'organisation du TFJM² des Jeunes Mathématicien·ne·s +L'organisation du TFJM² diff --git a/apps/participation/templates/participation/mails/team_not_validated.html b/apps/participation/templates/participation/mails/team_not_validated.html index a147c62..915a003 100644 --- a/apps/participation/templates/participation/mails/team_not_validated.html +++ b/apps/participation/templates/participation/mails/team_not_validated.html @@ -17,6 +17,6 @@ pour plus d'informations.
Cordialement,

-Le comité d'organisation du TFJM² des Jeunes Mathématicien·ne·s +Le comité d'organisation du TFJM² diff --git a/apps/participation/templates/participation/mails/team_not_validated.txt b/apps/participation/templates/participation/mails/team_not_validated.txt index 3b2a3b1..9479fba 100644 --- a/apps/participation/templates/participation/mails/team_not_validated.txt +++ b/apps/participation/templates/participation/mails/team_not_validated.txt @@ -9,4 +9,4 @@ N'hésitez pas à nous contacter à l'adresse contact@tfjm.org pour plus d'infor Cordialement, -Le comité d'organisation du TFJM² des Jeunes Mathématicien·ne·s +Le comité d'organisation du TFJM² diff --git a/apps/participation/templates/participation/mails/team_validated.html b/apps/participation/templates/participation/mails/team_validated.html index d3b92a7..c8b789c 100644 --- a/apps/participation/templates/participation/mails/team_validated.html +++ b/apps/participation/templates/participation/mails/team_validated.html @@ -7,14 +7,14 @@ Bonjour,

-Félicitations ! Votre équipe « {{ team.name }} » ({{ team.trigram }}) est désormais validée ! Vous êtes désormais apte à travailler sur -votre problème. Lorsque les Correspondances auront débutées, vous pourrez soumettre votre vidéo sur la plateforme d'inscription.
+Félicitations ! Votre équipe « {{ team.name }} » ({{ team.trigram }}) est désormais validée ! Vous êtes désormais apte +à travailler sur vos problèmes. Vous pourrez ensuite envoyer vos solutions sur la plateforme.
Les organisateurs vous adressent ce message :

{{ message }}

Cordialement,

-Le comité d'organisation du TFJM² des Jeunes Mathématicien·ne·s +Le comité d'organisation du TFJM² diff --git a/apps/participation/templates/participation/mails/team_validated.txt b/apps/participation/templates/participation/mails/team_validated.txt index c34e3f5..2653724 100644 --- a/apps/participation/templates/participation/mails/team_validated.txt +++ b/apps/participation/templates/participation/mails/team_validated.txt @@ -1,7 +1,7 @@ Bonjour, -Félicitations ! Votre équipe « {{ team.name }} » ({{ team.trigram }}) est désormais validée ! Vous êtes désormais apte à travailler sur -votre problème. Lorsque les Correspondances auront débutées, vous pourrez soumettre votre vidéo sur la plateforme d'inscription. +Félicitations ! Votre équipe « {{ team.name }} » ({{ team.trigram }}) est désormais validée ! Vous êtes désormais apte +à travailler sur vos problèmes. Vous pourrez ensuite envoyer vos solutions sur la plateforme. Les organisateurs vous adressent ce message : @@ -9,4 +9,4 @@ Les organisateurs vous adressent ce message : Cordialement, -Le comité d'organisation du TFJM² des Jeunes Mathématicien·ne·s +Le comité d'organisation du TFJM² diff --git a/apps/participation/views.py b/apps/participation/views.py index 5e092b5..e0ad4db 100644 --- a/apps/participation/views.py +++ b/apps/participation/views.py @@ -218,7 +218,7 @@ class TeamDetailView(LoginRequiredMixin, FormMixin, ProcessFormView, DetailView) mail_context = dict(user=admin.user, team=self.object, domain=Site.objects.first().domain) mail_plain = render_to_string("participation/mails/request_validation.txt", mail_context) mail_html = render_to_string("participation/mails/request_validation.html", mail_context) - admin.user.email_user("[Corres2math] Validation d'équipe", mail_plain, html_message=mail_html) + admin.user.email_user("[TFJM²] Validation d'équipe", mail_plain, html_message=mail_html) return super().form_valid(form) def handle_validate_participation(self, form): @@ -238,7 +238,7 @@ class TeamDetailView(LoginRequiredMixin, FormMixin, ProcessFormView, DetailView) mail_context = dict(team=self.object, message=form.cleaned_data["message"]) mail_plain = render_to_string("participation/mails/team_validated.txt", mail_context) mail_html = render_to_string("participation/mails/team_validated.html", mail_context) - send_mail("[Corres2math] Équipe validée", mail_plain, None, [self.object.email], html_message=mail_html) + send_mail("[TFJM²] Équipe validée", mail_plain, None, [self.object.email], html_message=mail_html) get_sympa_client().subscribe(self.object.email, "equipes", False, f"Equipe {self.object.name}") get_sympa_client().unsubscribe(self.object.email, "equipes-non-valides", False) @@ -248,7 +248,7 @@ class TeamDetailView(LoginRequiredMixin, FormMixin, ProcessFormView, DetailView) mail_context = dict(team=self.object, message=form.cleaned_data["message"]) mail_plain = render_to_string("participation/mails/team_not_validated.txt", mail_context) mail_html = render_to_string("participation/mails/team_not_validated.html", mail_context) - send_mail("[Corres2math] Équipe non validée", mail_plain, None, [self.object.email], + send_mail("[TFJM²] Équipe non validée", mail_plain, None, [self.object.email], html_message=mail_html) else: form.add_error(None, _("You must specify if you validate the registration or not.")) diff --git a/apps/registration/models.py b/apps/registration/models.py index 0e28559..a870df4 100644 --- a/apps/registration/models.py +++ b/apps/registration/models.py @@ -45,7 +45,7 @@ class Registration(PolymorphicModel): The account got created or the email got changed. Send an email that contains a link to validate the address. """ - subject = "[Corres2math] " + str(_("Activate your Correspondances account")) + subject = "[TFJM²] " + str(_("Activate your TFJM² account")) token = email_validation_token.make_token(self.user) uid = urlsafe_base64_encode(force_bytes(self.user.pk)) site = Site.objects.first() diff --git a/apps/registration/templates/registration/mails/email_validation_email.html b/apps/registration/templates/registration/mails/email_validation_email.html index d625716..4b61dd9 100644 --- a/apps/registration/templates/registration/mails/email_validation_email.html +++ b/apps/registration/templates/registration/mails/email_validation_email.html @@ -13,7 +13,7 @@

- {% trans "You recently registered on the Correspondances platform. Please click on the link below to confirm your registration." %} + {% trans "You recently registered on the TFJM² platform. Please click on the link below to confirm your registration." %}

diff --git a/apps/registration/templates/registration/mails/email_validation_email.txt b/apps/registration/templates/registration/mails/email_validation_email.txt index 07a09e1..025136f 100644 --- a/apps/registration/templates/registration/mails/email_validation_email.txt +++ b/apps/registration/templates/registration/mails/email_validation_email.txt @@ -2,7 +2,7 @@ {% trans "Hi" %} {{ user.username }}, -{% trans "You recently registered on the Correspondances platform. Please click on the link below to confirm your registration." %} +{% trans "You recently registered on the TFJM² platform. Please click on the link below to confirm your registration." %} https://{{ domain }}{% url 'registration:email_validation' uidb64=uid token=token %} diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po index 55d13fa..18c4b6b 100644 --- a/locale/fr/LC_MESSAGES/django.po +++ b/locale/fr/LC_MESSAGES/django.po @@ -113,7 +113,7 @@ msgid "No team was found with this access code." msgstr "Aucune équipe n'a été trouvée avec ce code d'accès." #: apps/participation/forms.py:71 -msgid "I engage myself to participate to the whole \"Correspondances\"." +msgid "I engage myself to participate to the whole TFJM²." msgstr "Je m'engage à participer à l'intégralité du TFJM²." #: apps/participation/forms.py:86 @@ -1003,7 +1003,7 @@ msgid "email confirmed" msgstr "email confirmé" #: apps/registration/models.py:48 -msgid "Activate your Correspondances account" +msgid "Activate your TFJM² account" msgstr "Activez votre compte du TFJM²" #: apps/registration/models.py:95 @@ -1162,7 +1162,7 @@ msgstr "Bonjour" #: apps/registration/templates/registration/mails/email_validation_email.html:16 #: apps/registration/templates/registration/mails/email_validation_email.txt:5 msgid "" -"You recently registered on the Correspondances platform. Please click on the " +"You recently registered on the TFJM² platform. Please click on the " "link below to confirm your registration." msgstr "" "Vous vous êtes inscrits sur la plateforme du TFJM². Merci de cliquer sur le " diff --git a/tfjm/templates/about.html b/tfjm/templates/about.html index 83aa6a7..f10fad0 100644 --- a/tfjm/templates/about.html +++ b/tfjm/templates/about.html @@ -6,7 +6,7 @@ {% block content %}

- La plateforme d'inscription du TFJM² des Jeunes Mathématiciennes a été développée entre 2019 et 2021 + La plateforme d'inscription du TFJM² a été développée entre 2019 et 2021 par Yohann D'ANELLO, bénévole pour l'association Animath. Elle est vouée à être utilisée par les participants pour intéragir avec les organisateurs et les autres participants.