2018-04-02 19:01:53 +00:00
|
|
|
import translate from 'diagram-js/lib/i18n/translate/translate';
|
2016-05-03 14:23:31 +00:00
|
|
|
|
|
|
|
function collectTranslations(template, replacements) {
|
|
|
|
var log = {
|
|
|
|
type: 'translations',
|
|
|
|
msg: template
|
|
|
|
};
|
|
|
|
|
|
|
|
console.log(JSON.stringify(log));
|
|
|
|
|
|
|
|
return translate(template, replacements);
|
|
|
|
}
|
|
|
|
|
2018-04-02 19:01:53 +00:00
|
|
|
export default {
|
2016-05-03 14:23:31 +00:00
|
|
|
translate: [ 'value', collectTranslations ]
|
|
|
|
};
|