We are doing some custom notifications based on events within Translation Manager. One of these is intended to notify the translator if a returned job is sent back for further amends. The way this happens is clicking the Reset Status button and its status changes back to Submitted.
However, this event does not seem to trigger any of the provided events e.g. Submitted and Submitting. We have tried:
In the latest version of Translation Manager for Umbraco 7 (2.3+) there is a ResetJob event*.
TranslationJobService.ResetJob
which will receive a TranslationStatusEventArgs object which contains the job (with the updated status) and an OldStatus value so you can see what it has been reset from.
*this event hasn't made it into the v8 version yet but is scheduled for the next release
Event to handle 'reset status' event
Hi,
We are doing some custom notifications based on events within Translation Manager. One of these is intended to notify the translator if a returned job is sent back for further amends. The way this happens is clicking the Reset Status button and its status changes back to Submitted.
However, this event does not seem to trigger any of the provided events e.g. Submitted and Submitting. We have tried:
Is it possible to hook into this event?
Thanks, Andy
Hi Andy,
In the latest version of Translation Manager for Umbraco 7 (2.3+) there is a ResetJob event*.
which will receive a
TranslationStatusEventArgs
object which contains the job (with the updated status) and anOldStatus
value so you can see what it has been reset from.*this event hasn't made it into the v8 version yet but is scheduled for the next release
Amazing, you think of everything, thanks!!
just good timing someone else asked for that one :)
is working on a reply...