I have many plugins with i18n key. All plugins are used in one app.
This app has to define a file 'messages_de.i18n' that looks like this:
@import _messagesFromPlugin1
@import _messagesFromPlugin2
@import _messagesFromPlugin3
@import _messagesFromPlugin4
Is it possible to define a pattern that to import a set of files? Something like
@import _messagesFrom*
My goal is not to change the 'messages_de.i18n' of the app after adding a new plugin.
I have many plugins with i18n key. All plugins are used in one app. This app has to define a file 'messages_de.i18n' that looks like this: @import _messagesFromPlugin1 @import _messagesFromPlugin2 @import _messagesFromPlugin3 @import _messagesFromPlugin4
Is it possible to define a pattern that to import a set of files? Something like @import _messagesFrom*
My goal is not to change the 'messages_de.i18n' of the app after adding a new plugin.