Description
This entire project is great, especially the level of customization, however I've found a place of extension and want to raise a feature/enhancement issue.
I am happy to fork this repository, make the changes and then request a pull back in. 😄
Currently, when a error message is shown via the simple or tooltip message services, they get the message from the validation service by called 'getErrorMessage' which then internally calls 'resolveMessage'. At this present time, resolveMessage will just attempt to get the message from the global config of messages, however it would be great to be able to have a custom message resolve service that could be called to. This would mean we could create a message resolve service that, for example, uses angular translate to get the messages from translation files instead, of from a reference data service that fetches data from a web api and caches etc; there are many possibilities.
I propose we allow the ability for developers to create custom resolvers for the messages and just have a default one that falls back to the current config.
Is this a feature you would be happy to merge in should someone code it?