Dear community, I’m on Indico-3.3.2 and we would like to have all the registration notifications in our language (Italian): this works for the registration creation email sent to the user, but the subsequent email that updates the registration (e.g. registration complete) is sent in English (my DEFAULT_LOCALE is it_IT).
Digging in the code I found this line of code in indico/modules/events/registration/notifications.py:
def notify_registration_state_update(registration, *, attach_rejection_reason=False, from_management=False)
and two lines below:
allow_session_locale=(not from_management)
So, if I’m not wrong, the email to the user will never be sent in their locale. There’s a reason for this ?