Hello,
Does i18n (sub) filtering works for newly added column to i18n_messages table?
http://wiki.servoy.com/display/SERV61/i … agesFilter
Added the column message_variant and have records in i18n_messages:
1,'key.for.test',null,'FirstFilter',1
2,'key.for.test',null,'SecondFilter',2
Running
i18n.setI18NMessagesFilter('message_variant', 1)
// or
i18n.setI18NMessagesFilter('message_variant', '1')
// or
i18n.setI18NMessagesFilter('message_variant', ['1'])
and it shows the SecondFilter value, but it should show FirstFilter;
Respectively, when open the i18n dialog (yes, read the warning in documentation), only the SecondFilter value appears in table.
Also tweaked the right-click->Read from DB & Write to DB.
Any ideas how to make additional column-based filter working for same message_key?
Regards