- Fix (regression): i18n of markers extension
parent
b51db3a3c1
commit
cba5909472
|
@ -640,7 +640,9 @@ var svgEditorExtension_markers = (function () {
|
||||||
},
|
},
|
||||||
|
|
||||||
buttons: buildButtonList(),
|
buttons: buildButtonList(),
|
||||||
context_tools: contextTools
|
context_tools: strings.contextTools.map(function (contextTool, i) {
|
||||||
|
return Object.assign(contextTools[i], contextTool);
|
||||||
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
case 28:
|
case 28:
|
||||||
|
|
|
@ -537,7 +537,9 @@ export default {
|
||||||
// changing_flag = false; // Not apparently in use
|
// changing_flag = false; // Not apparently in use
|
||||||
},
|
},
|
||||||
buttons: buildButtonList(),
|
buttons: buildButtonList(),
|
||||||
context_tools: contextTools
|
context_tools: strings.contextTools.map((contextTool, i) => {
|
||||||
|
return Object.assign(contextTools[i], contextTool);
|
||||||
|
})
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue