Hello,
In my Rails application, I would like to use simultaneously 2 backends, the first one storing translations in a DB, and the second one being the default YML based backend. I woud like that this second backend serves as a fallback backend, ie if a translation is not found in the first, Rails looks up the translation in the second one.
Is it possible to achieve that?
Edit:
My motivation is I would like not to have to store the default Rails translations in the first backend. The first backend I use comes with an admin web interface that display all the translations contained in the backend, I don't want to clutter this interface with those default translations. And I would like not to have to import them in the first backend, neither to have to update them when there are actualized.