24 lines
390 B
JavaScript
24 lines
390 B
JavaScript
|
var svgEditorExtensionLocale_star_en = (function () {
|
||
|
'use strict';
|
||
|
|
||
|
var en = {
|
||
|
name: 'star',
|
||
|
buttons: [{
|
||
|
title: 'Star Tool'
|
||
|
}],
|
||
|
contextTools: [{
|
||
|
title: 'Number of Sides',
|
||
|
label: 'points'
|
||
|
}, {
|
||
|
title: 'Pointiness',
|
||
|
label: 'Pointiness'
|
||
|
}, {
|
||
|
title: 'Twists the star',
|
||
|
label: 'Radial Shift'
|
||
|
}]
|
||
|
};
|
||
|
|
||
|
return en;
|
||
|
|
||
|
}());
|