js-draw
Version:
Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.
15 lines (14 loc) • 601 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.defaultComponentLocalization = void 0;
exports.defaultComponentLocalization = {
unlabeledImageNode: 'Unlabeled image node',
stroke: 'Stroke',
svgObject: 'SVG Object',
emptyBackground: 'Empty background',
gridBackground: 'Grid background',
filledBackgroundWithColor: (color) => `Filled background (${color})`,
text: (text) => `Text object: ${text}`,
imageNode: (description) => `Image: ${description}`,
restyledElement: (elementDescription) => `Restyled ${elementDescription}`,
};
;