2018-04-02 19:01:53 +00:00
|
|
|
import translate from 'diagram-js/lib/i18n/translate/translate';
|
2016-02-25 16:40:56 +00:00
|
|
|
|
2018-04-02 19:01:53 +00:00
|
|
|
export default function customTranslate(template, replacements) {
|
2016-02-25 16:40:56 +00:00
|
|
|
if (template === 'Remove') {
|
|
|
|
template = 'Eliminar';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (template === 'Activate the hand tool') {
|
|
|
|
template = 'Activar herramienta mano';
|
|
|
|
}
|
|
|
|
|
|
|
|
return translate(template, replacements);
|
2018-04-02 19:01:53 +00:00
|
|
|
}
|