Added Spanish translation (in progress) by Alicia Puerto, fixed bug where circle icon used circle marker icon

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1590 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Alexis Deveria
2010-06-08 18:40:13 +00:00
parent 281e70de9a
commit 83308ef46b
3 changed files with 34 additions and 38 deletions

View File

@@ -68,7 +68,7 @@ svgEditor.addExtension("Markers", function(S) {
{element:'path', attr:{d:'M20,80 L80,20 M80,80 L20,20'}},
triangle:
{element:'path', attr:{d:'M10,80 L50,20 L80,80 Z'}},
circle:
mcircle:
{element:'circle', attr:{r:30, cx:50, cy:50}},
}
@@ -89,19 +89,19 @@ svgEditor.addExtension("Markers", function(S) {
{id: "star", title: "Star" },
{id: "xmark", title: "X" },
{id: "triangle", title: "Triangle" },
{id: "circle", title: "Circle" },
{id: "mcircle", title: "Circle" },
{id: "leftarrow_o", title: "Open Left Arrow" },
{id: "rightarrow_o", title: "Open Right Arrow" },
{id: "box_o", title: "Open Box" },
{id: "star_o", title: "Open Star" },
{id: "triangle_o", title: "Open Triangle" },
{id: "circle_o", title: "Open Circle" },
{id: "mcircle_o", title: "Open Circle" },
]
};
// duplicate shapes to support unfilled (open) marker types with an _o suffix
$.each(['leftarrow','rightarrow','box','star','circle','triangle'],function(i,v) {
$.each(['leftarrow','rightarrow','box','star','mcircle','triangle'],function(i,v) {
marker_types[v+'_o'] = marker_types[v];
});