I have a gem that uses another gem. That other gem has translations (I18n). When localization is applied in my library, instead of text I see a value with a missing translation:
<code>Translation missing: en.some_field.a.b.c
</code>
<code>Translation missing: en.some_field.a.b.c
</code>
Translation missing: en.some_field.a.b.c
Now there is one solution for me – this is to move the config
directory from that library to my own.
But I wouldn’t want to copy these files, which are essentially useless for my library. Moreover, these files will have to be maintained, updated, etc.
Is it possible to somehow automatically load these files into the current gem from another?