26 lines
501 B
JavaScript
26 lines
501 B
JavaScript
var svgEditorExtensionLocale_foreignobject_en = (function () {
|
|
'use strict';
|
|
|
|
var en = {
|
|
name: 'foreignObject',
|
|
buttons: [{
|
|
title: 'Foreign Object Tool'
|
|
}, {
|
|
title: 'Edit ForeignObject Content'
|
|
}],
|
|
contextTools: [{
|
|
title: "Change foreignObject's width",
|
|
label: 'w'
|
|
}, {
|
|
title: "Change foreignObject's height",
|
|
label: 'h'
|
|
}, {
|
|
title: "Change foreignObject's font size",
|
|
label: 'font-size'
|
|
}]
|
|
};
|
|
|
|
return en;
|
|
|
|
}());
|