bpmn-js
Version:
A bpmn 2.0 toolkit and web modeler
15 lines (11 loc) • 356 B
JavaScript
;
var translate = require('diagram-js/lib/i18n/translate/translate');
module.exports = function customTranslate(template, replacements) {
if (template === 'Remove') {
template = 'Eliminar';
}
if (template === 'Activate the hand tool') {
template = 'Activar herramienta mano';
}
return translate(template, replacements);
};