Issue - Incomplete translations for CrudEvents in django.po (FR) file The following M2M translations are in the django.po file: ```python msgid "Many-to-Many Change" msgid "Reverse Many-to-Many Change" ``` These `CrudEvent` types are missing translations in the django.po file: ```python (M2M_ADD, _('Many-to-Many Add')), (M2M_ADD_REV, _('Reverse Many-to-Many Add')), (M2M_REMOVE, _('Many-to-Many Remove')), (M2M_REMOVE_REV, _('Reverse Many-to-Many Remove')), (M2M_CLEAR, _('Many-to-Many Clear')), (M2M_CLEAR_REV, _('Reverse Many-to-Many Clear')), ```