From d1678ceb498fbf49001bfcb96cb1173912245761 Mon Sep 17 00:00:00 2001 From: Jacques Distler Date: Wed, 28 Apr 2010 00:22:49 -0500 Subject: [PATCH] Sync with SVG-Edit 2.5beta --- public/svg-edit/editor/canvg/canvg.js | 235 +++++++++++--- .../svg-edit/editor/extensions/ext-arrows.js | 2 + .../svg-edit/editor/images/svg_edit_icons.svg | 61 +++- .../editor/jgraduate/jquery.jgraduate.js | 2 +- public/svg-edit/editor/locale/lang.af.js | 14 +- public/svg-edit/editor/locale/lang.ar.js | 14 +- public/svg-edit/editor/locale/lang.az.js | 14 +- public/svg-edit/editor/locale/lang.be.js | 14 +- public/svg-edit/editor/locale/lang.bg.js | 14 +- public/svg-edit/editor/locale/lang.ca.js | 14 +- public/svg-edit/editor/locale/lang.cs.js | 14 +- public/svg-edit/editor/locale/lang.cy.js | 14 +- public/svg-edit/editor/locale/lang.da.js | 14 +- public/svg-edit/editor/locale/lang.de.js | 14 +- public/svg-edit/editor/locale/lang.el.js | 14 +- public/svg-edit/editor/locale/lang.en.js | 48 ++- public/svg-edit/editor/locale/lang.es.js | 14 +- public/svg-edit/editor/locale/lang.et.js | 14 +- public/svg-edit/editor/locale/lang.fa.js | 14 +- public/svg-edit/editor/locale/lang.fi.js | 14 +- public/svg-edit/editor/locale/lang.fr.js | 14 +- public/svg-edit/editor/locale/lang.fy.js | 14 +- public/svg-edit/editor/locale/lang.ga.js | 14 +- public/svg-edit/editor/locale/lang.gl.js | 14 +- public/svg-edit/editor/locale/lang.he.js | 14 +- public/svg-edit/editor/locale/lang.hi.js | 16 +- public/svg-edit/editor/locale/lang.hr.js | 14 +- public/svg-edit/editor/locale/lang.hu.js | 14 +- public/svg-edit/editor/locale/lang.hy.js | 14 +- public/svg-edit/editor/locale/lang.id.js | 14 +- public/svg-edit/editor/locale/lang.is.js | 14 +- public/svg-edit/editor/locale/lang.it.js | 14 +- public/svg-edit/editor/locale/lang.ja.js | 14 +- public/svg-edit/editor/locale/lang.ko.js | 14 +- public/svg-edit/editor/locale/lang.lt.js | 14 +- public/svg-edit/editor/locale/lang.lv.js | 14 +- public/svg-edit/editor/locale/lang.mk.js | 14 +- public/svg-edit/editor/locale/lang.ms.js | 14 +- public/svg-edit/editor/locale/lang.mt.js | 14 +- public/svg-edit/editor/locale/lang.nl.js | 14 +- public/svg-edit/editor/locale/lang.no.js | 14 +- public/svg-edit/editor/locale/lang.pl.js | 14 +- public/svg-edit/editor/locale/lang.pt-PT.js | 14 +- public/svg-edit/editor/locale/lang.ro.js | 14 +- public/svg-edit/editor/locale/lang.ru.js | 306 +++++++++--------- public/svg-edit/editor/locale/lang.sk.js | 14 +- public/svg-edit/editor/locale/lang.sl.js | 14 +- public/svg-edit/editor/locale/lang.sq.js | 14 +- public/svg-edit/editor/locale/lang.sr.js | 14 +- public/svg-edit/editor/locale/lang.sv.js | 14 +- public/svg-edit/editor/locale/lang.sw.js | 14 +- public/svg-edit/editor/locale/lang.th.js | 14 +- public/svg-edit/editor/locale/lang.tl.js | 14 +- public/svg-edit/editor/locale/lang.tr.js | 14 +- public/svg-edit/editor/locale/lang.uk.js | 14 +- public/svg-edit/editor/locale/lang.vi.js | 14 +- public/svg-edit/editor/locale/lang.yi.js | 14 +- public/svg-edit/editor/locale/lang.zh-CN.js | 14 +- public/svg-edit/editor/locale/lang.zh-HK.js | 14 +- public/svg-edit/editor/locale/lang.zh-TW.js | 300 ++++++++--------- public/svg-edit/editor/svg-editor.css | 33 +- public/svg-edit/editor/svg-editor.html | 54 ++-- public/svg-edit/editor/svg-editor.js | 242 ++++++++------ public/svg-edit/editor/svgcanvas.js | 157 ++++++--- .../editor/svgicons/jquery.svgicons.js | 2 + public/svg-edit/extras/update-langs.py | 15 +- .../screencasts/svgedit-screencast-1.txt | 27 ++ .../screencasts/svgedit-screencast-2.txt | 23 ++ .../screencasts/svgedit-screencast-3.txt | 50 +++ 69 files changed, 1405 insertions(+), 896 deletions(-) create mode 100644 public/svg-edit/screencasts/svgedit-screencast-1.txt create mode 100644 public/svg-edit/screencasts/svgedit-screencast-2.txt create mode 100644 public/svg-edit/screencasts/svgedit-screencast-3.txt diff --git a/public/svg-edit/editor/canvg/canvg.js b/public/svg-edit/editor/canvg/canvg.js index d3aa73e7..b3d2083f 100644 --- a/public/svg-edit/editor/canvg/canvg.js +++ b/public/svg-edit/editor/canvg/canvg.js @@ -159,7 +159,19 @@ if(!window.console) { getDefinition: function() { var name = that.value.replace(/^(url\()?#([^\)]+)\)?$/, '$2'); return svg.Definitions[name]; - } + }, + + isUrl: function() { + return that.value.indexOf('url(') == 0 + }, + + getGradient: function(e) { + var grad = this.getDefinition(); + if (grad != null && grad.createGradient) { + return grad.createGradient(svg.ctx, e); + } + return null; + } } // length extensions @@ -171,7 +183,7 @@ if(!window.console) { EM: function(viewPort) { var em = 12; - var fontSize = new svg.Property('fontSize', svg.ctx.font.match(/[0-9][^\s\t\n\r\/]*/g)[0]); + var fontSize = new svg.Property('fontSize', svg.Font.Parse(svg.ctx.font).fontSize); if (fontSize.hasValue()) em = fontSize.Length.toPixels(viewPort); return em; @@ -220,6 +232,41 @@ if(!window.console) { } } + // fonts + svg.Font = new (function() { + this.Styles = ['normal','italic','oblique','inherit']; + this.Variants = ['normal','small-caps','inherit']; + this.Weights = ['normal','bold','bolder','lighter','100','200','300','400','500','600','700','800','900','inherit']; + + this.CreateFont = function(fontStyle, fontVariant, fontWeight, fontSize, fontFamily, inherit) { + var f = inherit != null ? this.Parse(inherit) : this.CreateFont('', '', '', '', '', svg.ctx.font); + return { + fontFamily: fontFamily || f.fontFamily, + fontSize: fontSize || f.fontSize, + fontStyle: fontStyle || f.fontStyle, + fontWeight: fontWeight || f.fontWeight, + fontVariant: fontVariant || f.fontVariant, + toString: function () { return [this.fontStyle, this.fontVariant, this.fontWeight, this.fontSize, this.fontFamily].join(' ') } + } + } + + var that = this; + this.Parse = function(s) { + var f = {}; + var d = svg.trim(svg.compressSpaces(s || '')).split(' '); + var set = { fontSize: false, fontStyle: false, fontWeight: false, fontVariant: false } + var ff = ''; + for (var i=0; i - Layer 1 @@ -220,7 +219,6 @@ - Layer 1 @@ -238,7 +236,6 @@ - Layer 1 @@ -312,6 +309,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -359,7 +387,6 @@ - Layer 1 @@ -657,6 +684,32 @@ + + + + + + + + + + + + + + + + + + + + + + T + T + + + diff --git a/public/svg-edit/editor/jgraduate/jquery.jgraduate.js b/public/svg-edit/editor/jgraduate/jquery.jgraduate.js index 7518af5c..ab02a42b 100644 --- a/public/svg-edit/editor/jgraduate/jquery.jgraduate.js +++ b/public/svg-edit/editor/jgraduate/jquery.jgraduate.js @@ -406,7 +406,7 @@ jQuery.fn.jGraduate = $this.paint.solidColor = null; okClicked(); }); - $('#'+id+'_lg_jGraduate_Ok').bind('click', function(paint) { + $('#'+id+'_lg_jGraduate_Cancel').bind('click', function(paint) { cancelClicked(); }); diff --git a/public/svg-edit/editor/locale/lang.af.js b/public/svg-edit/editor/locale/lang.af.js index 60f40457..564de1a1 100644 --- a/public/svg-edit/editor/locale/lang.af.js +++ b/public/svg-edit/editor/locale/lang.af.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Align in verhouding tot ..."}, -{"id": "angle", "title": "Verandering rotasie-hoek"}, +{"id": "tool_angle", "title": "Verandering rotasie-hoek"}, {"id": "angleLabel", "textContent": "hoek:"}, {"id": "bkgnd_color", "title": "Verander agtergrondkleur / opaciteit"}, {"id": "circle_cx", "title": "Verandering sirkel se cx koördineer"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Passing tot laag inhoud"}, {"id": "fit_to_sel", "textContent": "Passing tot seleksie"}, {"id": "font_family", "title": "Lettertipe verander Familie"}, -{"id": "font_size", "title": "Verandering Lettertipe Grootte"}, -{"id": "group_opacity", "title": "Verander geselekteerde item opaciteit"}, +{"id": "tool_font_size", "title": "Verandering Lettertipe Grootte"}, +{"id": "tool_opacity", "title": "Verander geselekteerde item opaciteit"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klik om te verander vul kleur, verskuiwing klik om 'n beroerte kleur verander"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Verandering reghoek hoogte"}, -{"id": "rect_rx", "title": "Verandering Rechthoek Corner Radius"}, -{"id": "rect_width", "title": "Verandering reghoek breedte"}, +{"id": "rect_height_tool", "title": "Verandering reghoek hoogte"}, +{"id": "cornerRadiusLabel", "title": "Verandering Rechthoek Corner Radius"}, +{"id": "rect_width_tool", "title": "Verandering reghoek breedte"}, {"id": "relativeToLabel", "textContent": "relatief tot:"}, {"id": "rheightLabel", "textContent": "hoogte:"}, {"id": "rwidthLabel", "textContent": "breedte:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elemente"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Klik op die Gereedskap"}, -{"id": "zoom", "title": "Change zoom vlak"}, +{"id": "zoom_panel", "title": "Change zoom vlak"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.ar.js b/public/svg-edit/editor/locale/lang.ar.js index 07d32434..f0262b43 100644 --- a/public/svg-edit/editor/locale/lang.ar.js +++ b/public/svg-edit/editor/locale/lang.ar.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "محاذاة النسبي ل ..."}, -{"id": "angle", "title": "تغيير زاوية الدوران"}, +{"id": "tool_angle", "title": "تغيير زاوية الدوران"}, {"id": "angleLabel", "textContent": "زاوية:"}, {"id": "bkgnd_color", "title": "تغير لون الخلفية / غموض"}, {"id": "circle_cx", "title": "دائرة التغيير لتنسيق cx"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "يصلح لطبقة المحتوى"}, {"id": "fit_to_sel", "textContent": "يصلح لاختيار"}, {"id": "font_family", "title": "تغيير الخط الأسرة"}, -{"id": "font_size", "title": "تغيير حجم الخط"}, -{"id": "group_opacity", "title": "تغيير مختارة غموض البند"}, +{"id": "tool_font_size", "title": "تغيير حجم الخط"}, +{"id": "tool_opacity", "title": "تغيير مختارة غموض البند"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "انقر لتغيير لون التعبئة ، تحولا مزدوجا فوق لتغيير لون السكتة الدماغية"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "تغيير المستطيل الارتفاع"}, -{"id": "rect_rx", "title": "تغيير مستطيل ركن الشعاع"}, -{"id": "rect_width", "title": "تغيير عرض المستطيل"}, +{"id": "rect_height_tool", "title": "تغيير المستطيل الارتفاع"}, +{"id": "cornerRadiusLabel", "title": "تغيير مستطيل ركن الشعاع"}, +{"id": "rect_width_tool", "title": "تغيير عرض المستطيل"}, {"id": "relativeToLabel", "textContent": "بالنسبة إلى:"}, {"id": "rheightLabel", "textContent": "الطول :"}, {"id": "rwidthLabel", "textContent": "العرض :"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "فك تجميع عناصر"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "أداة تكبير"}, -{"id": "zoom", "title": "تغيير مستوى التكبير"}, +{"id": "zoom_panel", "title": "تغيير مستوى التكبير"}, {"id": "zoomLabel", "textContent": "التكبير:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.az.js b/public/svg-edit/editor/locale/lang.az.js index d660e51f..2ecb48dc 100644 --- a/public/svg-edit/editor/locale/lang.az.js +++ b/public/svg-edit/editor/locale/lang.az.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Align relative to ..."}, -{"id": "angle", "title": "Change rotation angle"}, +{"id": "tool_angle", "title": "Change rotation angle"}, {"id": "angleLabel", "textContent": "angle:"}, {"id": "bkgnd_color", "title": "Change background color/opacity"}, {"id": "circle_cx", "title": "Change circle's cx coordinate"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Fit to layer content"}, {"id": "fit_to_sel", "textContent": "Fit to selection"}, {"id": "font_family", "title": "Change Font Family"}, -{"id": "font_size", "title": "Change Font Size"}, -{"id": "group_opacity", "title": "Change selected item opacity"}, +{"id": "tool_font_size", "title": "Change Font Size"}, +{"id": "tool_opacity", "title": "Change selected item opacity"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Click to change fill color, shift-click to change stroke color"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Change rectangle height"}, -{"id": "rect_rx", "title": "Change Rectangle Corner Radius"}, -{"id": "rect_width", "title": "Change rectangle width"}, +{"id": "rect_height_tool", "title": "Change rectangle height"}, +{"id": "cornerRadiusLabel", "title": "Change Rectangle Corner Radius"}, +{"id": "rect_width_tool", "title": "Change rectangle width"}, {"id": "relativeToLabel", "textContent": "relative to:"}, {"id": "rheightLabel", "textContent": "height:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Change zoom level"}, +{"id": "zoom_panel", "title": "Change zoom level"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.be.js b/public/svg-edit/editor/locale/lang.be.js index 6c227aea..c8891e90 100644 --- a/public/svg-edit/editor/locale/lang.be.js +++ b/public/svg-edit/editor/locale/lang.be.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Выраўнаваць па дачыненні да ..."}, -{"id": "angle", "title": "Змены вугла павароту"}, +{"id": "tool_angle", "title": "Змены вугла павароту"}, {"id": "angleLabel", "textContent": "Кут:"}, {"id": "bkgnd_color", "title": "Змяненне колеру фону / непразрыстасць"}, {"id": "circle_cx", "title": "CX змене круга каардынаты"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "По размеру слой ўтрымання"}, {"id": "fit_to_sel", "textContent": "Выбар памеру"}, {"id": "font_family", "title": "Змены Сямейства шрыфтоў"}, -{"id": "font_size", "title": "Змяніць памер шрыфта"}, -{"id": "group_opacity", "title": "Старонка абранага пункта непразрыстасці"}, +{"id": "tool_font_size", "title": "Змяніць памер шрыфта"}, +{"id": "tool_opacity", "title": "Старонка абранага пункта непразрыстасці"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Націсніце для змены колеру залівання, Shift-Click змяніць обводка"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Змены прастакутнік вышынёй"}, -{"id": "rect_rx", "title": "Змены прастакутнік Corner Radius"}, -{"id": "rect_width", "title": "Змяненне шырыні прамавугольніка"}, +{"id": "rect_height_tool", "title": "Змены прастакутнік вышынёй"}, +{"id": "cornerRadiusLabel", "title": "Змены прастакутнік Corner Radius"}, +{"id": "rect_width_tool", "title": "Змяненне шырыні прамавугольніка"}, {"id": "relativeToLabel", "textContent": "па параўнанні з:"}, {"id": "rheightLabel", "textContent": "Вышыня:"}, {"id": "rwidthLabel", "textContent": "Шырыня:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Элементы Разгруппировать"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Змяненне маштабу"}, +{"id": "zoom_panel", "title": "Змяненне маштабу"}, {"id": "zoomLabel", "textContent": "Павялічыць:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.bg.js b/public/svg-edit/editor/locale/lang.bg.js index 469fce50..f93cca37 100644 --- a/public/svg-edit/editor/locale/lang.bg.js +++ b/public/svg-edit/editor/locale/lang.bg.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Привеждане в сравнение с ..."}, -{"id": "angle", "title": "Промяна ъгъл на завъртане"}, +{"id": "tool_angle", "title": "Промяна ъгъл на завъртане"}, {"id": "angleLabel", "textContent": "ъгъл:"}, {"id": "bkgnd_color", "title": "Промяна на цвета на фона / непрозрачност"}, {"id": "circle_cx", "title": "CX Промяна кръг на координатната"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Fit да слой съдържание"}, {"id": "fit_to_sel", "textContent": "Fit за подбор"}, {"id": "font_family", "title": "Промяна на шрифта Семейство"}, -{"id": "font_size", "title": "Промени размера на буквите"}, -{"id": "group_opacity", "title": "Промяна на избрания елемент непрозрачност"}, +{"id": "tool_font_size", "title": "Промени размера на буквите"}, +{"id": "tool_opacity", "title": "Промяна на избрания елемент непрозрачност"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Кликнете, за да промени попълнете цвят, на смени, кликнете да променят цвета си удар"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Промяна на правоъгълник височина"}, -{"id": "rect_rx", "title": "Промяна на правоъгълник Corner Radius"}, -{"id": "rect_width", "title": "Промяна на правоъгълник ширина"}, +{"id": "rect_height_tool", "title": "Промяна на правоъгълник височина"}, +{"id": "cornerRadiusLabel", "title": "Промяна на правоъгълник Corner Radius"}, +{"id": "rect_width_tool", "title": "Промяна на правоъгълник ширина"}, {"id": "relativeToLabel", "textContent": "в сравнение с:"}, {"id": "rheightLabel", "textContent": "височина:"}, {"id": "rwidthLabel", "textContent": "широчина:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Разгрупирай Елементи"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Промяна на ниво на мащабиране"}, +{"id": "zoom_panel", "title": "Промяна на ниво на мащабиране"}, {"id": "zoomLabel", "textContent": "увеличение:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.ca.js b/public/svg-edit/editor/locale/lang.ca.js index 281856e1..b9f0a6c9 100644 --- a/public/svg-edit/editor/locale/lang.ca.js +++ b/public/svg-edit/editor/locale/lang.ca.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Alinear pel que fa a ..."}, -{"id": "angle", "title": "Canviar l'angle de rotació"}, +{"id": "tool_angle", "title": "Canviar l'angle de rotació"}, {"id": "angleLabel", "textContent": "angle:"}, {"id": "bkgnd_color", "title": "Color de fons / opacitat"}, {"id": "circle_cx", "title": "CX cercle Canvi de coordenades"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Ajustar al contingut de la capa d'"}, {"id": "fit_to_sel", "textContent": "Ajustar a la selecció"}, {"id": "font_family", "title": "Canviar la font Família"}, -{"id": "font_size", "title": "Change Font Size"}, -{"id": "group_opacity", "title": "Canviar la opacitat tema seleccionat"}, +{"id": "tool_font_size", "title": "Change Font Size"}, +{"id": "tool_opacity", "title": "Canviar la opacitat tema seleccionat"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Feu clic per canviar el color de farciment, shift-clic per canviar el color del traç"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Rectangle d'alçada Canvi"}, -{"id": "rect_rx", "title": "Canviar Rectangle Corner Radius"}, -{"id": "rect_width", "title": "Ample rectangle Canvi"}, +{"id": "rect_height_tool", "title": "Rectangle d'alçada Canvi"}, +{"id": "cornerRadiusLabel", "title": "Canviar Rectangle Corner Radius"}, +{"id": "rect_width_tool", "title": "Ample rectangle Canvi"}, {"id": "relativeToLabel", "textContent": "en relació amb:"}, {"id": "rheightLabel", "textContent": "Alçada:"}, {"id": "rwidthLabel", "textContent": "Ample:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Desagrupar elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Canviar el nivell de zoom"}, +{"id": "zoom_panel", "title": "Canviar el nivell de zoom"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.cs.js b/public/svg-edit/editor/locale/lang.cs.js index a1b53e11..05c0024b 100644 --- a/public/svg-edit/editor/locale/lang.cs.js +++ b/public/svg-edit/editor/locale/lang.cs.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Zarovnat relativně"}, -{"id": "angle", "title": "Změnit úhel natočení"}, +{"id": "tool_angle", "title": "Změnit úhel natočení"}, {"id": "angleLabel", "textContent": "úhel:"}, {"id": "bkgnd_color", "title": "Změnit barvu a průhlednost pozadí"}, {"id": "circle_cx", "title": "Změnit souřadnici X středu kružnice"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Přizpůsobit obsahu vrstvy"}, {"id": "fit_to_sel", "textContent": "Přizpůsobit výběru"}, {"id": "font_family", "title": "Změnit font"}, -{"id": "font_size", "title": "Změnit velikost písma"}, -{"id": "group_opacity", "title": "Změnit průhlednost objektů"}, +{"id": "tool_font_size", "title": "Změnit velikost písma"}, +{"id": "tool_opacity", "title": "Změnit průhlednost objektů"}, {"id": "icon_large", "textContent": "velké"}, {"id": "icon_medium", "textContent": "střední"}, {"id": "icon_small", "textContent": "malé"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Kliknutím změníte barvu výplně, kliknutím současně s klávesou shift změníte barvu čáry"}, {"id": "path_node_x", "title": "Změnit souřadnici X uzlu"}, {"id": "path_node_y", "title": "Změnit souřadnici Y uzlu"}, -{"id": "rect_height", "title": "Změnit výšku obdélníku"}, -{"id": "rect_rx", "title": "Změnit zaoblení obdélníku"}, -{"id": "rect_width", "title": "Změnit šířku obdélníku"}, +{"id": "rect_height_tool", "title": "Změnit výšku obdélníku"}, +{"id": "cornerRadiusLabel", "title": "Změnit zaoblení obdélníku"}, +{"id": "rect_width_tool", "title": "Změnit šířku obdélníku"}, {"id": "relativeToLabel", "textContent": "relatativně k:"}, {"id": "rheightLabel", "textContent": "výška:"}, {"id": "rwidthLabel", "textContent": "šířka:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Zrušit seskupení"}, {"id": "tool_wireframe", "title": "Zobrazit jen kostru"}, {"id": "tool_zoom", "title": "Přiblížení"}, -{"id": "zoom", "title": "Změna přiblížení"}, +{"id": "zoom_panel", "title": "Změna přiblížení"}, {"id": "zoomLabel", "textContent": "přiblížení:"}, {"id": "sidepanel_handle", "textContent": "V r s t v y", "title": "Táhnutím změnit velikost"}, { diff --git a/public/svg-edit/editor/locale/lang.cy.js b/public/svg-edit/editor/locale/lang.cy.js index 4b02fb24..b9dd45db 100644 --- a/public/svg-edit/editor/locale/lang.cy.js +++ b/public/svg-edit/editor/locale/lang.cy.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Alinio perthynas i ..."}, -{"id": "angle", "title": "Ongl cylchdro Newid"}, +{"id": "tool_angle", "title": "Ongl cylchdro Newid"}, {"id": "angleLabel", "textContent": "Angle:"}, {"id": "bkgnd_color", "title": "Newid lliw cefndir / Didreiddiad"}, {"id": "circle_cx", "title": "CX Newid cylch yn cydlynu"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Ffit cynnwys haen i"}, {"id": "fit_to_sel", "textContent": "Yn addas at ddewis"}, {"id": "font_family", "title": "Newid Font Teulu"}, -{"id": "font_size", "title": "Newid Maint Ffont"}, -{"id": "group_opacity", "title": "Newid dewis Didreiddiad eitem"}, +{"id": "tool_font_size", "title": "Newid Maint Ffont"}, +{"id": "tool_opacity", "title": "Newid dewis Didreiddiad eitem"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Cliciwch yma i lenwi newid lliw, sifft-cliciwch i newid lliw strôc"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Uchder petryal Newid"}, -{"id": "rect_rx", "title": "Newid Hirsgwâr Corner Radiws"}, -{"id": "rect_width", "title": "Lled petryal Newid"}, +{"id": "rect_height_tool", "title": "Uchder petryal Newid"}, +{"id": "cornerRadiusLabel", "title": "Newid Hirsgwâr Corner Radiws"}, +{"id": "rect_width_tool", "title": "Lled petryal Newid"}, {"id": "relativeToLabel", "textContent": "cymharol i:"}, {"id": "rheightLabel", "textContent": "uchder:"}, {"id": "rwidthLabel", "textContent": "lled:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Elfennau Ungroup"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Offer Chwyddo"}, -{"id": "zoom", "title": "Newid lefel chwyddo"}, +{"id": "zoom_panel", "title": "Newid lefel chwyddo"}, {"id": "zoomLabel", "textContent": "chwyddo:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.da.js b/public/svg-edit/editor/locale/lang.da.js index 78b23f0a..29e0ca11 100644 --- a/public/svg-edit/editor/locale/lang.da.js +++ b/public/svg-edit/editor/locale/lang.da.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Juster i forhold til ..."}, -{"id": "angle", "title": "Skift rotationsvinkel"}, +{"id": "tool_angle", "title": "Skift rotationsvinkel"}, {"id": "angleLabel", "textContent": "vinkel:"}, {"id": "bkgnd_color", "title": "Skift baggrundsfarve / uigennemsigtighed"}, {"id": "circle_cx", "title": "Skift cirklens cx koordinere"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Tilpas til lag indhold"}, {"id": "fit_to_sel", "textContent": "Tilpas til udvælgelse"}, {"id": "font_family", "title": "Skift Font Family"}, -{"id": "font_size", "title": "Skift skriftstørrelse"}, -{"id": "group_opacity", "title": "Skift valgte element opacitet"}, +{"id": "tool_font_size", "title": "Skift skriftstørrelse"}, +{"id": "tool_opacity", "title": "Skift valgte element opacitet"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klik for at ændre fyldfarve, shift-klik for at ændre stregfarve"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Skift rektangel højde"}, -{"id": "rect_rx", "title": "Skift Rektangel Corner Radius"}, -{"id": "rect_width", "title": "Skift rektanglets bredde"}, +{"id": "rect_height_tool", "title": "Skift rektangel højde"}, +{"id": "cornerRadiusLabel", "title": "Skift Rektangel Corner Radius"}, +{"id": "rect_width_tool", "title": "Skift rektanglets bredde"}, {"id": "relativeToLabel", "textContent": "i forhold til:"}, {"id": "rheightLabel", "textContent": "Højde:"}, {"id": "rwidthLabel", "textContent": "bredde:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Opdel Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Skift zoomniveau"}, +{"id": "zoom_panel", "title": "Skift zoomniveau"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.de.js b/public/svg-edit/editor/locale/lang.de.js index 7adcdbf8..4d8dd99a 100644 --- a/public/svg-edit/editor/locale/lang.de.js +++ b/public/svg-edit/editor/locale/lang.de.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Relativ zu einem anderem Objekt ausrichten ..."}, -{"id": "angle", "title": "Drehwinkel ändern"}, +{"id": "tool_angle", "title": "Drehwinkel ändern"}, {"id": "angleLabel", "textContent": "Winkel:"}, {"id": "bkgnd_color", "title": "Hintergrundfarbe ändern / Opazität"}, {"id": "circle_cx", "title": "Kreiszentrum (cx) ändern"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "An Inhalt der Ebene anpassen"}, {"id": "fit_to_sel", "textContent": "An die Auswahl anpassen"}, {"id": "font_family", "title": "Schriftart wählen"}, -{"id": "font_size", "title": "Schriftgröße einstellen"}, -{"id": "group_opacity", "title": "Opazität des ausgewählten Objekts ändern"}, +{"id": "tool_font_size", "title": "Schriftgröße einstellen"}, +{"id": "tool_opacity", "title": "Opazität des ausgewählten Objekts ändern"}, {"id": "icon_large", "textContent": "Groß"}, {"id": "icon_medium", "textContent": "Mittel"}, {"id": "icon_small", "textContent": "Klein"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klick zum Ändern der Füllfarbe, Shift-Klick zum Ändern der Linienfarbe"}, {"id": "path_node_x", "title": "Ändere die X Koordinate des Knoten"}, {"id": "path_node_y", "title": "Ändere die Y Koordinate des Knoten"}, -{"id": "rect_height", "title": "Höhe des Rechtecks ändern"}, -{"id": "rect_rx", "title": "Eckenradius des Rechtecks ändern"}, -{"id": "rect_width", "title": "Breite des Rechtecks ändern"}, +{"id": "rect_height_tool", "title": "Höhe des Rechtecks ändern"}, +{"id": "cornerRadiusLabel", "title": "Eckenradius des Rechtecks ändern"}, +{"id": "rect_width_tool", "title": "Breite des Rechtecks ändern"}, {"id": "relativeToLabel", "textContent": "im Vergleich zu:"}, {"id": "rheightLabel", "textContent": "Höhe:"}, {"id": "rwidthLabel", "textContent": "Breite:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Gruppierung aufheben"}, {"id": "tool_wireframe", "title": "Drahtmodell Modus"}, {"id": "tool_zoom", "title": "Zoomfaktor vergrößern oder verringern"}, -{"id": "zoom", "title": "vergrößern"}, +{"id": "zoom_panel", "title": "vergrößern"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "E b e n e n", "title": "Ziehe links/rechts um die Seitenleiste anzupassen"}, { diff --git a/public/svg-edit/editor/locale/lang.el.js b/public/svg-edit/editor/locale/lang.el.js index c9ee5002..e0a154bc 100644 --- a/public/svg-edit/editor/locale/lang.el.js +++ b/public/svg-edit/editor/locale/lang.el.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Στοίχιση σε σχέση με ..."}, -{"id": "angle", "title": "Αλλαγή γωνία περιστροφής"}, +{"id": "tool_angle", "title": "Αλλαγή γωνία περιστροφής"}, {"id": "angleLabel", "textContent": "γωνία:"}, {"id": "bkgnd_color", "title": "Αλλαγή χρώματος φόντου / αδιαφάνεια"}, {"id": "circle_cx", "title": "Cx Αλλαγή κύκλου συντονίζουν"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Προσαρμογή στο περιεχόμενο στρώμα"}, {"id": "fit_to_sel", "textContent": "Fit to επιλογή"}, {"id": "font_family", "title": "Αλλαγή γραμματοσειράς Οικογένεια"}, -{"id": "font_size", "title": "Αλλαγή μεγέθους γραμματοσειράς"}, -{"id": "group_opacity", "title": "Αλλαγή αδιαφάνεια επιλεγμένο σημείο"}, +{"id": "tool_font_size", "title": "Αλλαγή μεγέθους γραμματοσειράς"}, +{"id": "tool_opacity", "title": "Αλλαγή αδιαφάνεια επιλεγμένο σημείο"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Κάντε κλικ για να συμπληρώσετε την αλλαγή χρώματος, στροφή κλικ για να αλλάξετε το χρώμα εγκεφαλικό"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Αλλαγή ύψος ορθογωνίου"}, -{"id": "rect_rx", "title": "Αλλαγή ορθογώνιο Corner Radius"}, -{"id": "rect_width", "title": "Αλλαγή πλάτους ορθογώνιο"}, +{"id": "rect_height_tool", "title": "Αλλαγή ύψος ορθογωνίου"}, +{"id": "cornerRadiusLabel", "title": "Αλλαγή ορθογώνιο Corner Radius"}, +{"id": "rect_width_tool", "title": "Αλλαγή πλάτους ορθογώνιο"}, {"id": "relativeToLabel", "textContent": "σε σχέση με:"}, {"id": "rheightLabel", "textContent": "ύψος:"}, {"id": "rwidthLabel", "textContent": "Πλάτος:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Κατάργηση ομαδοποίησης Στοιχεία"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Αλλαγή επίπεδο μεγέθυνσης"}, +{"id": "zoom_panel", "title": "Αλλαγή επίπεδο μεγέθυνσης"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.en.js b/public/svg-edit/editor/locale/lang.en.js index cbc68a2a..8e41a7ca 100644 --- a/public/svg-edit/editor/locale/lang.en.js +++ b/public/svg-edit/editor/locale/lang.en.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Align relative to ..."}, -{"id": "angle", "title": "Change rotation angle"}, +{"id": "tool_angle", "title": "Change rotation angle"}, {"id": "angleLabel", "textContent": "angle:"}, {"id": "bkgnd_color", "title": "Change background color/opacity"}, {"id": "circle_cx", "title": "Change circle's cx coordinate"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Fit to layer content"}, {"id": "fit_to_sel", "textContent": "Fit to selection"}, {"id": "font_family", "title": "Change Font Family"}, -{"id": "font_size", "title": "Change Font Size"}, -{"id": "group_opacity", "title": "Change selected item opacity"}, +{"id": "tool_font_size", "title": "Change Font Size"}, +{"id": "tool_opacity", "title": "Change selected item opacity"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Click to change fill color, shift-click to change stroke color"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Change rectangle height"}, -{"id": "rect_rx", "title": "Change Rectangle Corner Radius"}, -{"id": "rect_width", "title": "Change rectangle width"}, +{"id": "rect_height_tool", "title": "Change rectangle height"}, +{"id": "cornerRadiusLabel", "title": "Change Rectangle Corner Radius"}, +{"id": "rect_width_tool", "title": "Change rectangle width"}, {"id": "relativeToLabel", "textContent": "relative to:"}, {"id": "rheightLabel", "textContent": "height:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -79,12 +79,14 @@ {"id": "svginfo_title", "textContent": "Title"}, {"id": "svginfo_width", "textContent": "Width:"}, {"id": "text", "title": "Change text contents"}, +{"id": "tool_add_subpath", "title": "Add sub-path"}, {"id": "tool_alignbottom", "title": "Align Bottom"}, {"id": "tool_aligncenter", "title": "Align Center"}, {"id": "tool_alignleft", "title": "Align Left"}, {"id": "tool_alignmiddle", "title": "Align Middle"}, {"id": "tool_alignright", "title": "Align Right"}, {"id": "tool_aligntop", "title": "Align Top"}, +{"id": "tool_blur", "title": "Change gaussian blur value"}, {"id": "tool_bold", "title": "Bold Text"}, {"id": "tool_circle", "title": "Circle"}, {"id": "tool_clear", "textContent": "New Image"}, @@ -110,6 +112,7 @@ {"id": "tool_node_delete", "title": "Delete Node"}, {"id": "tool_node_link", "title": "Link Control Points"}, {"id": "tool_open", "textContent": "Open Image"}, +{"id": "tool_openclose_path", "textContent": "Open/close sub-path"}, {"id": "tool_path", "title": "Path Tool"}, {"id": "tool_rect", "title": "Rectangle"}, {"id": "tool_redo", "title": "Redo"}, @@ -126,9 +129,27 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Change zoom level"}, +{"id": "zoom_panel", "title": "Change zoom level"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, +{"id": "tool_blur", "title": "Change gaussian blur value"}, +{"id": "tool_position", "title": "Align Element to Page"}, +{"id": "idLabel", "title": "Identify the element"}, +{"id": "tool_openclose_path", "title": "Open/close sub-path"}, +{"id": "tool_add_subpath", "title": "Add sub-path"}, +{"id": "cur_linejoin", "title": "Add sub-path"}, +{"id": "linejoin_miter", "title": "Linejoin: Miter"}, +{"id": "linejoin_round", "title": "Linejoin: Round"}, +{"id": "linejoin_bevel", "title": "Linejoin: Bevel"}, +{"id": "linecap_butt", "title": "Linecap: Butt"}, +{"id": "linecap_square", "title": "Linecap: Square"}, +{"id": "linecap_round", "title": "Linecap: Round"}, +{"id": "tool_import", "textContent": "Import SVG"}, +{"id": "tool_export", "textContent": "Export as PNG"}, +{"id": "tool_eyedropper", "title": "Eye Dropper Tool"}, +{"id": "mode_connect", "title": "Connect two objects"}, +{"id": "connector_no_arrow", "textContent": "No arrow"}, + { "js_strings": { "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?", @@ -142,6 +163,11 @@ "enterUniqueLayerName": "Please enter a unique layer name", "featNotSupported": "Feature not supported", "invalidAttrValGiven": "Invalid value given", + "enterNewImgURL":"Enter the new image URL", + "defsFailOnSave": "NOTE: Due to a bug in your browser, this image may appear wrong (missing gradients or elements). It will however appear correct once actually saved.", + "loadingImage":"Loading image, please wait...", + "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.", + "noteTheseIssues": "Also note the following issues: ", "key_backspace": "backspace", "key_del": "delete", "key_down": "down", @@ -151,7 +177,13 @@ "noContentToFitTo": "No content to fit to", "ok": "OK", "pathCtrlPtTooltip": "Drag control point to adjust curve properties", - "pathNodeTooltip": "Drag node to move it. Double-click node to change segment type" + "pathNodeTooltip": "Drag node to move it. Double-click node to change segment type", + "exportNoBlur": "Blurred elements will appear as un-blurred", + "exportNoImage": "Image elements will not appear", + "exportNoforeignObject": "foreignObject elements will not appear", + "exportNoMarkers": "Marker elements (arrows, etc) may not appear as expected", + "exportNoDashArray": "Strokes will appear filled", + "exportNoText": "Text may not appear as expected" } } ] \ No newline at end of file diff --git a/public/svg-edit/editor/locale/lang.es.js b/public/svg-edit/editor/locale/lang.es.js index 8bc84ce4..c582a123 100644 --- a/public/svg-edit/editor/locale/lang.es.js +++ b/public/svg-edit/editor/locale/lang.es.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Alinear con respecto a ..."}, -{"id": "angle", "title": "Cambiar el ángulo de rotación"}, +{"id": "tool_angle", "title": "Cambiar el ángulo de rotación"}, {"id": "angleLabel", "textContent": "ángulo:"}, {"id": "bkgnd_color", "title": "Cambiar color de fondo / opacidad"}, {"id": "circle_cx", "title": "Cambiar la posición horizonral CX del círculo"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Ajustar al contenido de la capa"}, {"id": "fit_to_sel", "textContent": "Ajustar a la selección"}, {"id": "font_family", "title": "Tipo de fuente"}, -{"id": "font_size", "title": "Tamaño de la fuente"}, -{"id": "group_opacity", "title": "Cambiar la opacidad del objeto seleccionado"}, +{"id": "tool_font_size", "title": "Tamaño de la fuente"}, +{"id": "tool_opacity", "title": "Cambiar la opacidad del objeto seleccionado"}, {"id": "icon_large", "textContent": "Grande"}, {"id": "icon_medium", "textContent": "Mediano"}, {"id": "icon_small", "textContent": "Pequeño"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Haga clic para cambiar el color de relleno. Pulse Mayús y haga clic para cambiar el color del contorno."}, {"id": "path_node_x", "title": "Cambiar la posición horizontal X del nodo"}, {"id": "path_node_y", "title": "Cambiar la posición vertical Y del nodo"}, -{"id": "rect_height", "title": "Cambiar la altura del rectángulo"}, -{"id": "rect_rx", "title": "Cambiar el radio de las esquinas del rectángulo"}, -{"id": "rect_width", "title": "Cambiar el ancho rectángulo"}, +{"id": "rect_height_tool", "title": "Cambiar la altura del rectángulo"}, +{"id": "cornerRadiusLabel", "title": "Cambiar el radio de las esquinas del rectángulo"}, +{"id": "rect_width_tool", "title": "Cambiar el ancho rectángulo"}, {"id": "relativeToLabel", "textContent": "en relación con:"}, {"id": "rheightLabel", "textContent": "Alto:"}, {"id": "rwidthLabel", "textContent": "Ancho:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Desagrupar objetos"}, {"id": "tool_wireframe", "title": "Modo marco de alambre"}, {"id": "tool_zoom", "title": "Zoom"}, -{"id": "zoom", "title": "Cambiar el nivel de zoom"}, +{"id": "zoom_panel", "title": "Cambiar el nivel de zoom"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "C a p a s", "title": "Arrastrar hacia la izquierda/derecha para modificar el tamaño del panel lateral"}, { diff --git a/public/svg-edit/editor/locale/lang.et.js b/public/svg-edit/editor/locale/lang.et.js index 5392abc3..69fa4ac2 100644 --- a/public/svg-edit/editor/locale/lang.et.js +++ b/public/svg-edit/editor/locale/lang.et.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Viia võrreldes ..."}, -{"id": "angle", "title": "Muuda Pöördenurk"}, +{"id": "tool_angle", "title": "Muuda Pöördenurk"}, {"id": "angleLabel", "textContent": "nurk:"}, {"id": "bkgnd_color", "title": "Muuda tausta värvi / läbipaistmatus"}, {"id": "circle_cx", "title": "Muuda ringi's cx kooskõlastada"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Sobita kiht sisu"}, {"id": "fit_to_sel", "textContent": "Fit valiku"}, {"id": "font_family", "title": "Muutke Kirjasinperhe"}, -{"id": "font_size", "title": "Change font size"}, -{"id": "group_opacity", "title": "Muuda valitud elemendi läbipaistmatus"}, +{"id": "tool_font_size", "title": "Change font size"}, +{"id": "tool_opacity", "title": "Muuda valitud elemendi läbipaistmatus"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Click muuta täitke värvi, Shift-nuppu, et muuta insult värvi"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Muuda ristküliku kõrgus"}, -{"id": "rect_rx", "title": "Muuda ristkülik Nurgakabe Raadius"}, -{"id": "rect_width", "title": "Muuda ristküliku laius"}, +{"id": "rect_height_tool", "title": "Muuda ristküliku kõrgus"}, +{"id": "cornerRadiusLabel", "title": "Muuda ristkülik Nurgakabe Raadius"}, +{"id": "rect_width_tool", "title": "Muuda ristküliku laius"}, {"id": "relativeToLabel", "textContent": "võrreldes:"}, {"id": "rheightLabel", "textContent": "Kõrgus:"}, {"id": "rwidthLabel", "textContent": "laius:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Lõhu Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Muuda suumi taset"}, +{"id": "zoom_panel", "title": "Muuda suumi taset"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.fa.js b/public/svg-edit/editor/locale/lang.fa.js index acb6db27..1190fb79 100644 --- a/public/svg-edit/editor/locale/lang.fa.js +++ b/public/svg-edit/editor/locale/lang.fa.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "‫تراز نسبت به ...‬"}, -{"id": "angle", "title": "‫تغییر زاویه چرخش‬"}, +{"id": "tool_angle", "title": "‫تغییر زاویه چرخش‬"}, {"id": "angleLabel", "textContent": "‫زاویه:‬"}, {"id": "bkgnd_color", "title": "‫تغییر رنگ پس زمینه / تاری‬"}, {"id": "circle_cx", "title": "‫تغییر مختصات cx دایره‬"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "‫هم اندازه شدن با محتوای لایه‬"}, {"id": "fit_to_sel", "textContent": "‫هم اندازه شدن با اشیاء انتخاب شده‬"}, {"id": "font_family", "title": "‫تغییر خانواده قلم‬"}, -{"id": "font_size", "title": "‫تغییر اندازه قلم‬"}, -{"id": "group_opacity", "title": "‫تغییر تاری عنصر انتخاب شده‬"}, +{"id": "tool_font_size", "title": "‫تغییر اندازه قلم‬"}, +{"id": "tool_opacity", "title": "‫تغییر تاری عنصر انتخاب شده‬"}, {"id": "icon_large", "textContent": "‫بزرگ‬"}, {"id": "icon_medium", "textContent": "‫متوسط‬"}, {"id": "icon_small", "textContent": "‫کوچک‬"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "‫برای تغییر رنگ، کلیک کنید. برای تغییر رنگ لبه، کلید تبدیل (shift) را فشرده و کلیک کنید‬"}, {"id": "path_node_x", "title": "‫تغییر مختصات x نقطه‬"}, {"id": "path_node_y", "title": "‫تغییر مختصات y نقطه‬"}, -{"id": "rect_height", "title": "‫تغییر ارتفاع مستطیل‬"}, -{"id": "rect_rx", "title": "‫تغییر شعاع گوشه مستطیل‬"}, -{"id": "rect_width", "title": "‫تغییر عرض مستطیل‬"}, +{"id": "rect_height_tool", "title": "‫تغییر ارتفاع مستطیل‬"}, +{"id": "cornerRadiusLabel", "title": "‫تغییر شعاع گوشه مستطیل‬"}, +{"id": "rect_width_tool", "title": "‫تغییر عرض مستطیل‬"}, {"id": "relativeToLabel", "textContent": "‫نسبت به:‬"}, {"id": "rheightLabel", "textContent": "‫ارتفاع:‬"}, {"id": "rwidthLabel", "textContent": "‫عرض:‬"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "‫خارج کردن عناصر از گروه ‬"}, {"id": "tool_wireframe", "title": "‫حالت نمایش لبه ها ‬"}, {"id": "tool_zoom", "title": "‫ابزار بزرگ نمایی ‬"}, -{"id": "zoom", "title": "‫تغییر بزرگ نمایی‬"}, +{"id": "zoom_panel", "title": "‫تغییر بزرگ نمایی‬"}, {"id": "zoomLabel", "textContent": "‫بزرگ نمایی:‬"}, {"id": "sidepanel_handle", "textContent": "‫لایه ها‬", "title": "‫برای تغییر اندازه منوی کناری، آن را به سمت راست/چپ بکشید ‬"}, { diff --git a/public/svg-edit/editor/locale/lang.fi.js b/public/svg-edit/editor/locale/lang.fi.js index 47d1477e..f81fa1ea 100644 --- a/public/svg-edit/editor/locale/lang.fi.js +++ b/public/svg-edit/editor/locale/lang.fi.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Kohdista suhteessa ..."}, -{"id": "angle", "title": "Muuta kiertokulma"}, +{"id": "tool_angle", "title": "Muuta kiertokulma"}, {"id": "angleLabel", "textContent": "kulma:"}, {"id": "bkgnd_color", "title": "Vaihda taustaväri / sameuden"}, {"id": "circle_cx", "title": "Muuta Circlen CX koordinoida"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Sovita kerros sisältöön"}, {"id": "fit_to_sel", "textContent": "Sovita valinta"}, {"id": "font_family", "title": "Muuta Font Family"}, -{"id": "font_size", "title": "Muuta fontin kokoa"}, -{"id": "group_opacity", "title": "Muuta valitun kohteen läpinäkyvyys"}, +{"id": "tool_font_size", "title": "Muuta fontin kokoa"}, +{"id": "tool_opacity", "title": "Muuta valitun kohteen läpinäkyvyys"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klikkaa muuttaa täyttöväri, Shift-click vaihtaa aivohalvauksen väriä"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Muuta suorakaiteen korkeus"}, -{"id": "rect_rx", "title": "Muuta suorakaide Corner Säde"}, -{"id": "rect_width", "title": "Muuta suorakaiteen leveys"}, +{"id": "rect_height_tool", "title": "Muuta suorakaiteen korkeus"}, +{"id": "cornerRadiusLabel", "title": "Muuta suorakaide Corner Säde"}, +{"id": "rect_width_tool", "title": "Muuta suorakaiteen leveys"}, {"id": "relativeToLabel", "textContent": "suhteessa:"}, {"id": "rheightLabel", "textContent": "korkeus:"}, {"id": "rwidthLabel", "textContent": "leveys"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Suurennustyökalu"}, -{"id": "zoom", "title": "Muuta suurennustaso"}, +{"id": "zoom_panel", "title": "Muuta suurennustaso"}, {"id": "zoomLabel", "textContent": "zoomin:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.fr.js b/public/svg-edit/editor/locale/lang.fr.js index 9a065da8..7c08b3b7 100644 --- a/public/svg-edit/editor/locale/lang.fr.js +++ b/public/svg-edit/editor/locale/lang.fr.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Aligner par rapport à ..."}, -{"id": "angle", "title": "Changer l'angle de rotation"}, +{"id": "tool_angle", "title": "Changer l'angle de rotation"}, {"id": "angleLabel", "textContent": "Angle:"}, {"id": "bkgnd_color", "title": "Changer la couleur d'arrière-plan / l'opacité"}, {"id": "circle_cx", "title": "Changer la position horizontale cx du cercle"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Ajuster au contenu du calque"}, {"id": "fit_to_sel", "textContent": "Ajuster à la sélection"}, {"id": "font_family", "title": "Changer la famille de police"}, -{"id": "font_size", "title": "Taille de la police"}, -{"id": "group_opacity", "title": "Changer l'opacité de l'élément"}, +{"id": "tool_font_size", "title": "Taille de la police"}, +{"id": "tool_opacity", "title": "Changer l'opacité de l'élément"}, {"id": "icon_large", "textContent": "Grande"}, {"id": "icon_medium", "textContent": "Moyenne"}, {"id": "icon_small", "textContent": "Petite"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Cliquer pour changer la couleur de remplissage, Shift-Clic pour changer la couleur de contour"}, {"id": "path_node_x", "title": "Changer la positon horizontale x du nœud"}, {"id": "path_node_y", "title": "Changer la position verticale y du nœud"}, -{"id": "rect_height", "title": "Changer la hauteur du rectangle"}, -{"id": "rect_rx", "title": "Changer le rayon des coins du rectangle"}, -{"id": "rect_width", "title": "Changer la largeur du rectangle"}, +{"id": "rect_height_tool", "title": "Changer la hauteur du rectangle"}, +{"id": "cornerRadiusLabel", "title": "Changer le rayon des coins du rectangle"}, +{"id": "rect_width_tool", "title": "Changer la largeur du rectangle"}, {"id": "relativeToLabel", "textContent": "Relativement à:"}, {"id": "rheightLabel", "textContent": "Hauteur:"}, {"id": "rwidthLabel", "textContent": "Largeur:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Dégrouper les éléments"}, {"id": "tool_wireframe", "title": "Mode Fil de Fer"}, {"id": "tool_zoom", "title": "Zoom"}, -{"id": "zoom", "title": "Changer le niveau de zoom"}, +{"id": "zoom_panel", "title": "Changer le niveau de zoom"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "C A L Q U E S", "title": "Tirer vers la gauche/droite pour redimensionner le panneau"}, { diff --git a/public/svg-edit/editor/locale/lang.fy.js b/public/svg-edit/editor/locale/lang.fy.js index 3518f68f..0aeb3efc 100644 --- a/public/svg-edit/editor/locale/lang.fy.js +++ b/public/svg-edit/editor/locale/lang.fy.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Útlijne relatyf oan..."}, -{"id": "angle", "title": "Draaie"}, +{"id": "tool_angle", "title": "Draaie"}, {"id": "angleLabel", "textContent": "Hoek:"}, {"id": "bkgnd_color", "title": "Eftergrûnkleur/trochsichtigens oanpasse"}, {"id": "circle_cx", "title": "Feroarje it X-koördinaat fan it middelpunt fan'e sirkel."}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Op laachynhâld passe"}, {"id": "fit_to_sel", "textContent": "Op seleksje passe"}, {"id": "font_family", "title": "Lettertype oanpasse"}, -{"id": "font_size", "title": "Lettergrutte oanpasse"}, -{"id": "group_opacity", "title": "Trochsichtigens oanpasse"}, +{"id": "tool_font_size", "title": "Lettergrutte oanpasse"}, +{"id": "tool_opacity", "title": "Trochsichtigens oanpasse"}, {"id": "icon_large", "textContent": "Grut"}, {"id": "icon_medium", "textContent": "Middel"}, {"id": "icon_small", "textContent": "Lyts"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klik om de folkleur te feroarjen, shift-klik om de linekleur te feroarjen."}, {"id": "path_node_x", "title": "X-koördinaat knooppunt oanpasse"}, {"id": "path_node_y", "title": "Y-koördinaat knooppunt oanpasse"}, -{"id": "rect_height", "title": "Hichte rjochthoeke oanpasse"}, -{"id": "rect_rx", "title": "Hoekeradius oanpasse"}, -{"id": "rect_width", "title": "Breedte rjochthoeke oanpasse"}, +{"id": "rect_height_tool", "title": "Hichte rjochthoeke oanpasse"}, +{"id": "cornerRadiusLabel", "title": "Hoekeradius oanpasse"}, +{"id": "rect_width_tool", "title": "Breedte rjochthoeke oanpasse"}, {"id": "relativeToLabel", "textContent": "Relatief tsjinoer:"}, {"id": "rheightLabel", "textContent": "Hichte:"}, {"id": "rwidthLabel", "textContent": "Breedte:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Groepering opheffe"}, {"id": "tool_wireframe", "title": "Triemodel"}, {"id": "tool_zoom", "title": "Zoom"}, -{"id": "zoom", "title": "Yn-/útzoome"}, +{"id": "zoom_panel", "title": "Yn-/útzoome"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "L a g e n", "title": "Sleep nei links/rjochts om it sidepaniel grutter as lytser te meitjen"}, { diff --git a/public/svg-edit/editor/locale/lang.ga.js b/public/svg-edit/editor/locale/lang.ga.js index 3faf1c25..c43bbe12 100644 --- a/public/svg-edit/editor/locale/lang.ga.js +++ b/public/svg-edit/editor/locale/lang.ga.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Ailínigh i gcomparáid leis ..."}, -{"id": "angle", "title": "Uillinn rothlaithe Athrú"}, +{"id": "tool_angle", "title": "Uillinn rothlaithe Athrú"}, {"id": "angleLabel", "textContent": "uillinn:"}, {"id": "bkgnd_color", "title": "Dath cúlra Athraigh / teimhneacht"}, {"id": "circle_cx", "title": "Athraigh an ciorcal a chomhordú CX"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Laghdaigh shraith ábhar a"}, {"id": "fit_to_sel", "textContent": "Laghdaigh a roghnú"}, {"id": "font_family", "title": "Athraigh an Cló Teaghlaigh"}, -{"id": "font_size", "title": "Athraigh Clómhéid"}, -{"id": "group_opacity", "title": "Athraigh roghnaithe teimhneacht mír"}, +{"id": "tool_font_size", "title": "Athraigh Clómhéid"}, +{"id": "tool_opacity", "title": "Athraigh roghnaithe teimhneacht mír"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Cliceáil chun athrú a líonadh dath, aistriú-cliceáil chun dath a athrú stróc"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Airde dronuilleog Athrú"}, -{"id": "rect_rx", "title": "Athraigh Dronuilleog Cúinne na Ga"}, -{"id": "rect_width", "title": "Leithead dronuilleog Athrú"}, +{"id": "rect_height_tool", "title": "Airde dronuilleog Athrú"}, +{"id": "cornerRadiusLabel", "title": "Athraigh Dronuilleog Cúinne na Ga"}, +{"id": "rect_width_tool", "title": "Leithead dronuilleog Athrú"}, {"id": "relativeToLabel", "textContent": "i gcomparáid leis:"}, {"id": "rheightLabel", "textContent": "Airde:"}, {"id": "rwidthLabel", "textContent": "leithead:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Eilimintí Díghrúpáil"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zúmáil Uirlis"}, -{"id": "zoom", "title": "Athraigh súmáil leibhéal"}, +{"id": "zoom_panel", "title": "Athraigh súmáil leibhéal"}, {"id": "zoomLabel", "textContent": "súmáil isteach:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.gl.js b/public/svg-edit/editor/locale/lang.gl.js index 5c490ed4..d2e5a661 100644 --- a/public/svg-edit/editor/locale/lang.gl.js +++ b/public/svg-edit/editor/locale/lang.gl.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Aliñar en relación a ..."}, -{"id": "angle", "title": "Cambiar o ángulo de xiro"}, +{"id": "tool_angle", "title": "Cambiar o ángulo de xiro"}, {"id": "angleLabel", "textContent": "ángulo:"}, {"id": "bkgnd_color", "title": "Mudar a cor de fondo / Opacidade"}, {"id": "circle_cx", "title": "Cx Cambiar círculo de coordenadas"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Axustar o contido da capa de"}, {"id": "fit_to_sel", "textContent": "Axustar a selección"}, {"id": "font_family", "title": "Cambiar fonte Familia"}, -{"id": "font_size", "title": "Mudar tamaño de letra"}, -{"id": "group_opacity", "title": "Cambia a opacidade elemento seleccionado"}, +{"id": "tool_font_size", "title": "Mudar tamaño de letra"}, +{"id": "tool_opacity", "title": "Cambia a opacidade elemento seleccionado"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Preme aquí para cambiar a cor de recheo, Shift-clic para cambiar a cor do curso"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Cambiar altura do rectángulo"}, -{"id": "rect_rx", "title": "Cambiar Corner Rectangle Radius"}, -{"id": "rect_width", "title": "Cambiar a largo rectángulo"}, +{"id": "rect_height_tool", "title": "Cambiar altura do rectángulo"}, +{"id": "cornerRadiusLabel", "title": "Cambiar Corner Rectangle Radius"}, +{"id": "rect_width_tool", "title": "Cambiar a largo rectángulo"}, {"id": "relativeToLabel", "textContent": "en relación ao:"}, {"id": "rheightLabel", "textContent": "height:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Elementos Desagrupadas"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Cambiar o nivel de zoom"}, +{"id": "zoom_panel", "title": "Cambiar o nivel de zoom"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.he.js b/public/svg-edit/editor/locale/lang.he.js index 86124962..25efab10 100755 --- a/public/svg-edit/editor/locale/lang.he.js +++ b/public/svg-edit/editor/locale/lang.he.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "יישור ביחס ..."}, -{"id": "angle", "title": "שינוי זווית הסיבוב"}, +{"id": "tool_angle", "title": "שינוי זווית הסיבוב"}, {"id": "angleLabel", "textContent": "זווית:"}, {"id": "bkgnd_color", "title": "שנה את צבע הרקע / אטימות"}, {"id": "circle_cx", "title": "CX מעגל של שנה לתאם"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "מתאים לתוכן שכבת"}, {"id": "fit_to_sel", "textContent": "התאם הבחירה"}, {"id": "font_family", "title": "שינוי גופן משפחה"}, -{"id": "font_size", "title": "שנה גודל גופן"}, -{"id": "group_opacity", "title": "שינוי הפריט הנבחר אטימות"}, +{"id": "tool_font_size", "title": "שנה גודל גופן"}, +{"id": "tool_opacity", "title": "שינוי הפריט הנבחר אטימות"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "לחץ כדי לשנות צבע מילוי, לחץ על Shift-לשנות צבע שבץ"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "שינוי גובה המלבן"}, -{"id": "rect_rx", "title": "לשנות מלבן פינת רדיוס"}, -{"id": "rect_width", "title": "שינוי רוחב המלבן"}, +{"id": "rect_height_tool", "title": "שינוי גובה המלבן"}, +{"id": "cornerRadiusLabel", "title": "לשנות מלבן פינת רדיוס"}, +{"id": "rect_width_tool", "title": "שינוי רוחב המלבן"}, {"id": "relativeToLabel", "textContent": "יחסית:"}, {"id": "rheightLabel", "textContent": "גובה:"}, {"id": "rwidthLabel", "textContent": "רוחב:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "אלמנטים פרק קבוצה"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "זום כלי"}, -{"id": "zoom", "title": "שינוי גודל תצוגה"}, +{"id": "zoom_panel", "title": "שינוי גודל תצוגה"}, {"id": "zoomLabel", "textContent": "זום:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.hi.js b/public/svg-edit/editor/locale/lang.hi.js index d6dde786..b25c9cc8 100644 --- a/public/svg-edit/editor/locale/lang.hi.js +++ b/public/svg-edit/editor/locale/lang.hi.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "संरेखित करें रिश्तेदार को ..."}, -{"id": "angle", "title": "बदलें रोटेशन कोण"}, +{"id": "tool_angle", "title": "बदलें रोटेशन कोण"}, {"id": "angleLabel", "textContent": "कोण:"}, {"id": "bkgnd_color", "title": "पृष्ठभूमि का रंग बदल / अस्पष्टता"}, {"id": "circle_cx", "title": "बदल रहा है चक्र cx समन्वय"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "फिट परत सामग्री के लिए"}, {"id": "fit_to_sel", "textContent": "चयन के लिए फिट"}, {"id": "font_family", "title": "बदलें फ़ॉन्ट परिवार"}, -{"id": "font_size", "title": "फ़ॉन्ट का आकार बदलें"}, -{"id": "group_opacity", "title": "पारदर्शिता बदलें"}, +{"id": "tool_font_size", "title": "फ़ॉन्ट का आकार बदलें"}, +{"id": "tool_opacity", "title": "पारदर्शिता बदलें"}, {"id": "icon_large", "textContent": "बड़ा"}, {"id": "icon_medium", "textContent": "मध्यम"}, {"id": "icon_small", "textContent": "छोटा"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "रंग बदलने पर क्लिक करें, बदलाव भरने के क्लिक करने के लिए स्ट्रोक का रंग बदलने के लिए"}, {"id": "path_node_x", "title": "नोड का x समकक्ष बदलें"}, {"id": "path_node_y", "title": "नोड का y समकक्ष बदलें"}, -{"id": "rect_height", "title": "बदलें आयत ऊंचाई"}, -{"id": "rect_rx", "title": "बदलें आयत कॉर्नर त्रिज्या"}, -{"id": "rect_width", "title": "बदलें आयत चौड़ाई"}, +{"id": "rect_height_tool", "title": "बदलें आयत ऊंचाई"}, +{"id": "cornerRadiusLabel", "title": "बदलें आयत कॉर्नर त्रिज्या"}, +{"id": "rect_width_tool", "title": "बदलें आयत चौड़ाई"}, {"id": "relativeToLabel", "textContent": "रिश्तेदार को:"}, {"id": "rheightLabel", "textContent": "ऊँचाई:"}, {"id": "rwidthLabel", "textContent": "चौड़ाई:"}, @@ -125,9 +125,9 @@ {"id": "tool_ungroup", "title": "अंश को समूह से अलग करें"}, {"id": "tool_wireframe", "title": "रूपरेखा मोड"}, {"id": "tool_zoom", "title": "ज़ूम उपकरण"}, -{"id": "zoom", "title": "बदलें स्तर ज़ूम"}, +{"id": "zoom_panel", "title": "बदलें स्तर ज़ूम"}, {"id": "zoomLabel", "textContent": "जूम:"}, -{"id": "sidepanel_handle","textContent":"प र तें","title":"दायें/बाएं घसीट कर आकार बदलें"}, +{"id": "sidepanel_handle", "textContent": "प र तें", "title": "दायें/बाएं घसीट कर आकार बदलें"}, { "js_strings": { "QerrorsRevertToSource": "आपके एस.वी.जी. स्रोत में त्रुटियों थी.\nक्या आप मूल एस.वी.जी स्रोत पर वापिस जाना चाहते हैं?", diff --git a/public/svg-edit/editor/locale/lang.hr.js b/public/svg-edit/editor/locale/lang.hr.js index 1d8c74dd..62bfa27a 100644 --- a/public/svg-edit/editor/locale/lang.hr.js +++ b/public/svg-edit/editor/locale/lang.hr.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Poravnaj u odnosu na ..."}, -{"id": "angle", "title": "Promijeni rotation angle"}, +{"id": "tool_angle", "title": "Promijeni rotation angle"}, {"id": "angleLabel", "textContent": "kut:"}, {"id": "bkgnd_color", "title": "Promijeni boju pozadine / neprozirnost"}, {"id": "circle_cx", "title": "Promjena krug's CX koordinirati"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Prilagodi sloj sadržaj"}, {"id": "fit_to_sel", "textContent": "Prilagodi odabir"}, {"id": "font_family", "title": "Promjena fontova"}, -{"id": "font_size", "title": "Change font size"}, -{"id": "group_opacity", "title": "Promjena odabrane stavke neprozirnost"}, +{"id": "tool_font_size", "title": "Change font size"}, +{"id": "tool_opacity", "title": "Promjena odabrane stavke neprozirnost"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Kliknite promijeniti boju ispune, shift-click to promijeniti boju moždanog udara"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Promijeni pravokutnik visine"}, -{"id": "rect_rx", "title": "Promijeni Pravokutnik Corner Radius"}, -{"id": "rect_width", "title": "Promijeni pravokutnik širine"}, +{"id": "rect_height_tool", "title": "Promijeni pravokutnik visine"}, +{"id": "cornerRadiusLabel", "title": "Promijeni Pravokutnik Corner Radius"}, +{"id": "rect_width_tool", "title": "Promijeni pravokutnik širine"}, {"id": "relativeToLabel", "textContent": "u odnosu na:"}, {"id": "rheightLabel", "textContent": "visina:"}, {"id": "rwidthLabel", "textContent": "širina:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Razgrupiranje Elementi"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Alat za zumiranje"}, -{"id": "zoom", "title": "Promjena razine zumiranja"}, +{"id": "zoom_panel", "title": "Promjena razine zumiranja"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.hu.js b/public/svg-edit/editor/locale/lang.hu.js index b804cbfa..a98cede6 100644 --- a/public/svg-edit/editor/locale/lang.hu.js +++ b/public/svg-edit/editor/locale/lang.hu.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Képest Igazítás ..."}, -{"id": "angle", "title": "Váltás forgás szög"}, +{"id": "tool_angle", "title": "Váltás forgás szög"}, {"id": "angleLabel", "textContent": "irányból:"}, {"id": "bkgnd_color", "title": "Change background color / homályosság"}, {"id": "circle_cx", "title": "Change kör CX koordináta"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Igazítás a réteg tartalma"}, {"id": "fit_to_sel", "textContent": "Igazítás a kiválasztási"}, {"id": "font_family", "title": "Change Betűcsalád"}, -{"id": "font_size", "title": "Change font size"}, -{"id": "group_opacity", "title": "A kijelölt elem opacity"}, +{"id": "tool_font_size", "title": "Change font size"}, +{"id": "tool_opacity", "title": "A kijelölt elem opacity"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Kattints ide a változások töltse szín, shift-click változtatni stroke color"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Change téglalap magassága"}, -{"id": "rect_rx", "title": "Change téglalap sarok sugara"}, -{"id": "rect_width", "title": "Change téglalap szélessége"}, +{"id": "rect_height_tool", "title": "Change téglalap magassága"}, +{"id": "cornerRadiusLabel", "title": "Change téglalap sarok sugara"}, +{"id": "rect_width_tool", "title": "Change téglalap szélessége"}, {"id": "relativeToLabel", "textContent": "relatív hogy:"}, {"id": "rheightLabel", "textContent": "magasság:"}, {"id": "rwidthLabel", "textContent": "szélesség:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Szétbont elemei"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Change nagyítási"}, +{"id": "zoom_panel", "title": "Change nagyítási"}, {"id": "zoomLabel", "textContent": "nagyítási:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.hy.js b/public/svg-edit/editor/locale/lang.hy.js index feae380e..c0fac22f 100644 --- a/public/svg-edit/editor/locale/lang.hy.js +++ b/public/svg-edit/editor/locale/lang.hy.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Align relative to ..."}, -{"id": "angle", "title": "Change rotation angle"}, +{"id": "tool_angle", "title": "Change rotation angle"}, {"id": "angleLabel", "textContent": "angle:"}, {"id": "bkgnd_color", "title": "Change background color/opacity"}, {"id": "circle_cx", "title": "Change circle's cx coordinate"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Fit to layer content"}, {"id": "fit_to_sel", "textContent": "Fit to selection"}, {"id": "font_family", "title": "Change Font Family"}, -{"id": "font_size", "title": "Change Font Size"}, -{"id": "group_opacity", "title": "Change selected item opacity"}, +{"id": "tool_font_size", "title": "Change Font Size"}, +{"id": "tool_opacity", "title": "Change selected item opacity"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Click to change fill color, shift-click to change stroke color"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Change rectangle height"}, -{"id": "rect_rx", "title": "Change Rectangle Corner Radius"}, -{"id": "rect_width", "title": "Change rectangle width"}, +{"id": "rect_height_tool", "title": "Change rectangle height"}, +{"id": "cornerRadiusLabel", "title": "Change Rectangle Corner Radius"}, +{"id": "rect_width_tool", "title": "Change rectangle width"}, {"id": "relativeToLabel", "textContent": "relative to:"}, {"id": "rheightLabel", "textContent": "height:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Change zoom level"}, +{"id": "zoom_panel", "title": "Change zoom level"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.id.js b/public/svg-edit/editor/locale/lang.id.js index bb2d669e..2c82d670 100644 --- a/public/svg-edit/editor/locale/lang.id.js +++ b/public/svg-edit/editor/locale/lang.id.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Rata relatif ..."}, -{"id": "angle", "title": "Ubah sudut rotasi"}, +{"id": "tool_angle", "title": "Ubah sudut rotasi"}, {"id": "angleLabel", "textContent": "sudut:"}, {"id": "bkgnd_color", "title": "Mengubah warna latar belakang / keburaman"}, {"id": "circle_cx", "title": "Mengubah koordinat lingkaran cx"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Muat konten lapisan"}, {"id": "fit_to_sel", "textContent": "Fit seleksi"}, {"id": "font_family", "title": "Ubah Font Keluarga"}, -{"id": "font_size", "title": "Ubah Ukuran Font"}, -{"id": "group_opacity", "title": "Mengubah item yang dipilih keburaman"}, +{"id": "tool_font_size", "title": "Ubah Ukuran Font"}, +{"id": "tool_opacity", "title": "Mengubah item yang dipilih keburaman"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klik untuk mengubah warna mengisi, shift-klik untuk mengubah warna stroke"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Perubahan tinggi persegi panjang"}, -{"id": "rect_rx", "title": "Ubah Corner Rectangle Radius"}, -{"id": "rect_width", "title": "Ubah persegi panjang lebar"}, +{"id": "rect_height_tool", "title": "Perubahan tinggi persegi panjang"}, +{"id": "cornerRadiusLabel", "title": "Ubah Corner Rectangle Radius"}, +{"id": "rect_width_tool", "title": "Ubah persegi panjang lebar"}, {"id": "relativeToLabel", "textContent": "relatif:"}, {"id": "rheightLabel", "textContent": "height:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elemen"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Mengubah tingkat pembesaran"}, +{"id": "zoom_panel", "title": "Mengubah tingkat pembesaran"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.is.js b/public/svg-edit/editor/locale/lang.is.js index 7f6dce9c..1a24a877 100644 --- a/public/svg-edit/editor/locale/lang.is.js +++ b/public/svg-edit/editor/locale/lang.is.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Jafna miðað við ..."}, -{"id": "angle", "title": "Breyting snúningur horn"}, +{"id": "tool_angle", "title": "Breyting snúningur horn"}, {"id": "angleLabel", "textContent": "horn:"}, {"id": "bkgnd_color", "title": "Breyta bakgrunnslit / opacity"}, {"id": "circle_cx", "title": "Cx Breyta hring er að samræma"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Laga til lag efni"}, {"id": "fit_to_sel", "textContent": "Fit til val"}, {"id": "font_family", "title": "Change Leturfjölskylda"}, -{"id": "font_size", "title": "Breyta leturstærð"}, -{"id": "group_opacity", "title": "Breyta valin atriði opacity"}, +{"id": "tool_font_size", "title": "Breyta leturstærð"}, +{"id": "tool_opacity", "title": "Breyta valin atriði opacity"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Smelltu hér til að breyta fylla lit, Shift-smelltu til að breyta högg lit"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Breyta rétthyrningur hæð"}, -{"id": "rect_rx", "title": "Breyta rétthyrningur Corner Radíus"}, -{"id": "rect_width", "title": "Skipta rétthyrningur width"}, +{"id": "rect_height_tool", "title": "Breyta rétthyrningur hæð"}, +{"id": "cornerRadiusLabel", "title": "Breyta rétthyrningur Corner Radíus"}, +{"id": "rect_width_tool", "title": "Skipta rétthyrningur width"}, {"id": "relativeToLabel", "textContent": "hlutfallslegt til:"}, {"id": "rheightLabel", "textContent": "Height"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Breyta Stækkunarstig"}, +{"id": "zoom_panel", "title": "Breyta Stækkunarstig"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.it.js b/public/svg-edit/editor/locale/lang.it.js index 54ef0a18..20012f82 100644 --- a/public/svg-edit/editor/locale/lang.it.js +++ b/public/svg-edit/editor/locale/lang.it.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Allineati alla ..."}, -{"id": "angle", "title": "Cambia l'angolo di rotazione"}, +{"id": "tool_angle", "title": "Cambia l'angolo di rotazione"}, {"id": "angleLabel", "textContent": "Angolo:"}, {"id": "bkgnd_color", "title": "Cambia il colore di sfondo / opacità"}, {"id": "circle_cx", "title": "Cx cerchio Modifica di coordinate"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Adatta a livello di contenuti"}, {"id": "fit_to_sel", "textContent": "Adatta alla selezione"}, {"id": "font_family", "title": "Change Font Family"}, -{"id": "font_size", "title": "Modifica dimensione carattere"}, -{"id": "group_opacity", "title": "Cambia l'opacità dell'oggetto selezionato"}, +{"id": "tool_font_size", "title": "Modifica dimensione carattere"}, +{"id": "tool_opacity", "title": "Cambia l'opacità dell'oggetto selezionato"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Fare clic per cambiare il colore di riempimento, shift-click per cambiare colore del tratto"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Cambia l'altezza rettangolo"}, -{"id": "rect_rx", "title": "Cambia Rectangle Corner Radius"}, -{"id": "rect_width", "title": "Cambia la larghezza rettangolo"}, +{"id": "rect_height_tool", "title": "Cambia l'altezza rettangolo"}, +{"id": "cornerRadiusLabel", "title": "Cambia Rectangle Corner Radius"}, +{"id": "rect_width_tool", "title": "Cambia la larghezza rettangolo"}, {"id": "relativeToLabel", "textContent": "rispetto al:"}, {"id": "rheightLabel", "textContent": "Altezza:"}, {"id": "rwidthLabel", "textContent": "Larghezza:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Separa Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Cambia il livello di zoom"}, +{"id": "zoom_panel", "title": "Cambia il livello di zoom"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.ja.js b/public/svg-edit/editor/locale/lang.ja.js index d96e3b4d..d67425ff 100644 --- a/public/svg-edit/editor/locale/lang.ja.js +++ b/public/svg-edit/editor/locale/lang.ja.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "揃える"}, -{"id": "angle", "title": "回転角の変更"}, +{"id": "tool_angle", "title": "回転角の変更"}, {"id": "angleLabel", "textContent": "角度:"}, {"id": "bkgnd_color", "title": "背景色/不透明度の変更"}, {"id": "circle_cx", "title": "円の中心を変更(X座標)"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "レイヤー上のコンテンツに合わせる"}, {"id": "fit_to_sel", "textContent": "選択対象に合わせる"}, {"id": "font_family", "title": "フォントファミリーの変更"}, -{"id": "font_size", "title": "文字サイズの変更"}, -{"id": "group_opacity", "title": "不透明度"}, +{"id": "tool_font_size", "title": "文字サイズの変更"}, +{"id": "tool_opacity", "title": "不透明度"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "クリックで塗りの色を選択、Shift+クリックで線の色を選択"}, {"id": "path_node_x", "title": "ノードのX座標を変更"}, {"id": "path_node_y", "title": "ノードのY座標を変更"}, -{"id": "rect_height", "title": "長方形の高さを変更"}, -{"id": "rect_rx", "title": "長方形の角の半径を変更"}, -{"id": "rect_width", "title": "長方形の幅を変更"}, +{"id": "rect_height_tool", "title": "長方形の高さを変更"}, +{"id": "cornerRadiusLabel", "title": "長方形の角の半径を変更"}, +{"id": "rect_width_tool", "title": "長方形の幅を変更"}, {"id": "relativeToLabel", "textContent": "相対:"}, {"id": "rheightLabel", "textContent": "高さ:"}, {"id": "rwidthLabel", "textContent": "幅:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "グループ化を解除"}, {"id": "tool_wireframe", "title": "ワイヤーフレームで表示 [F]"}, {"id": "tool_zoom", "title": "ズームツール"}, -{"id": "zoom", "title": "ズーム倍率の変更"}, +{"id": "zoom_panel", "title": "ズーム倍率の変更"}, {"id": "zoomLabel", "textContent": "ズーム:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "ドラッグで幅の調整"}, { diff --git a/public/svg-edit/editor/locale/lang.ko.js b/public/svg-edit/editor/locale/lang.ko.js index b8b78c55..e92c3923 100644 --- a/public/svg-edit/editor/locale/lang.ko.js +++ b/public/svg-edit/editor/locale/lang.ko.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "정렬 상대적으로 ..."}, -{"id": "angle", "title": "회전 각도를 변경"}, +{"id": "tool_angle", "title": "회전 각도를 변경"}, {"id": "angleLabel", "textContent": "각도:"}, {"id": "bkgnd_color", "title": "배경 색상 변경 / 투명도"}, {"id": "circle_cx", "title": "변경 동그라미 CX는 좌표"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "레이어에 맞게 콘텐츠"}, {"id": "fit_to_sel", "textContent": "맞춤 선택"}, {"id": "font_family", "title": "글꼴 변경 패밀리"}, -{"id": "font_size", "title": "글꼴 크기 변경"}, -{"id": "group_opacity", "title": "변경 항목을 선택 불투명도"}, +{"id": "tool_font_size", "title": "글꼴 크기 변경"}, +{"id": "tool_opacity", "title": "변경 항목을 선택 불투명도"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "색상을 클릭, 근무 시간 채우기 스트로크 색상을 변경하려면 변경하려면"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "사각형의 높이를 변경"}, -{"id": "rect_rx", "title": "변경 직사각형 코너 반경"}, -{"id": "rect_width", "title": "사각형의 너비 변경"}, +{"id": "rect_height_tool", "title": "사각형의 높이를 변경"}, +{"id": "cornerRadiusLabel", "title": "변경 직사각형 코너 반경"}, +{"id": "rect_width_tool", "title": "사각형의 너비 변경"}, {"id": "relativeToLabel", "textContent": "상대:"}, {"id": "rheightLabel", "textContent": "높이 :"}, {"id": "rwidthLabel", "textContent": "폭 :"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "그룹 해제 요소"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "줌 도구"}, -{"id": "zoom", "title": "변경 수준으로 확대"}, +{"id": "zoom_panel", "title": "변경 수준으로 확대"}, {"id": "zoomLabel", "textContent": "축소:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.lt.js b/public/svg-edit/editor/locale/lang.lt.js index 18fb4826..420dfcc9 100644 --- a/public/svg-edit/editor/locale/lang.lt.js +++ b/public/svg-edit/editor/locale/lang.lt.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Derinti palyginti ..."}, -{"id": "angle", "title": "Keisti sukimosi kampas"}, +{"id": "tool_angle", "title": "Keisti sukimosi kampas"}, {"id": "angleLabel", "textContent": "kampas:"}, {"id": "bkgnd_color", "title": "Pakeisti fono spalvą / drumstumas"}, {"id": "circle_cx", "title": "Keisti ratas's CX koordinuoti"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Talpinti sluoksnis turinio"}, {"id": "fit_to_sel", "textContent": "Talpinti atrankos"}, {"id": "font_family", "title": "Pakeistišriftą Šeima"}, -{"id": "font_size", "title": "Change font size"}, -{"id": "group_opacity", "title": "Pakeisti pasirinkto elemento neskaidrumo"}, +{"id": "tool_font_size", "title": "Change font size"}, +{"id": "tool_opacity", "title": "Pakeisti pasirinkto elemento neskaidrumo"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Spustelėkite norėdami keisti užpildo spalvą, perėjimo spustelėkite pakeisti insultas spalva"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Keisti stačiakampio aukščio"}, -{"id": "rect_rx", "title": "Keisti stačiakampis skyrelį Spindulys"}, -{"id": "rect_width", "title": "Pakeisti stačiakampio plotis"}, +{"id": "rect_height_tool", "title": "Keisti stačiakampio aukščio"}, +{"id": "cornerRadiusLabel", "title": "Keisti stačiakampis skyrelį Spindulys"}, +{"id": "rect_width_tool", "title": "Pakeisti stačiakampio plotis"}, {"id": "relativeToLabel", "textContent": "palyginti:"}, {"id": "rheightLabel", "textContent": "Ūgis:"}, {"id": "rwidthLabel", "textContent": "Plotis:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Išgrupuoti elementai"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Įrankį"}, -{"id": "zoom", "title": "Keisti mastelį"}, +{"id": "zoom_panel", "title": "Keisti mastelį"}, {"id": "zoomLabel", "textContent": "Padidinti:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.lv.js b/public/svg-edit/editor/locale/lang.lv.js index 943b0762..59ad344e 100644 --- a/public/svg-edit/editor/locale/lang.lv.js +++ b/public/svg-edit/editor/locale/lang.lv.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Līdzināt, salīdzinot ar ..."}, -{"id": "angle", "title": "Mainīt griešanās leņķis"}, +{"id": "tool_angle", "title": "Mainīt griešanās leņķis"}, {"id": "angleLabel", "textContent": "leņķis:"}, {"id": "bkgnd_color", "title": "Change background color / necaurredzamība"}, {"id": "circle_cx", "title": "Maina aplis's CX koordinēt"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Ievietot slānis saturs"}, {"id": "fit_to_sel", "textContent": "Fit atlases"}, {"id": "font_family", "title": "Mainīt fonta Family"}, -{"id": "font_size", "title": "Mainīt fonta izmēru"}, -{"id": "group_opacity", "title": "Mainīt izvēlēto objektu necaurredzamība"}, +{"id": "tool_font_size", "title": "Mainīt fonta izmēru"}, +{"id": "tool_opacity", "title": "Mainīt izvēlēto objektu necaurredzamība"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Noklikšķiniet, lai mainītu aizpildījuma krāsu, shift-click to mainīt stroke krāsa"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Change Taisnstūra augstums"}, -{"id": "rect_rx", "title": "Maina Taisnstūris Corner Rādiuss"}, -{"id": "rect_width", "title": "Change taisnstūra platums"}, +{"id": "rect_height_tool", "title": "Change Taisnstūra augstums"}, +{"id": "cornerRadiusLabel", "title": "Maina Taisnstūris Corner Rādiuss"}, +{"id": "rect_width_tool", "title": "Change taisnstūra platums"}, {"id": "relativeToLabel", "textContent": "salīdzinājumā ar:"}, {"id": "rheightLabel", "textContent": "augstums:"}, {"id": "rwidthLabel", "textContent": "platums:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Atgrupēt Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Pārmaiņu mērogu"}, +{"id": "zoom_panel", "title": "Pārmaiņu mērogu"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.mk.js b/public/svg-edit/editor/locale/lang.mk.js index a302bac7..530417a2 100644 --- a/public/svg-edit/editor/locale/lang.mk.js +++ b/public/svg-edit/editor/locale/lang.mk.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Порамни во поглед на ..."}, -{"id": "angle", "title": "Change ротација агол"}, +{"id": "tool_angle", "title": "Change ротација агол"}, {"id": "angleLabel", "textContent": "агол:"}, {"id": "bkgnd_color", "title": "Смени позадина / непроѕирноста"}, {"id": "circle_cx", "title": "Промена круг на cx координира"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Способен да слој содржина"}, {"id": "fit_to_sel", "textContent": "Способен да селекција"}, {"id": "font_family", "title": "Смени фонт Фамилија"}, -{"id": "font_size", "title": "Изменифонт Големина"}, -{"id": "group_opacity", "title": "Промена избрани ставка непроѕирноста"}, +{"id": "tool_font_size", "title": "Изменифонт Големина"}, +{"id": "tool_opacity", "title": "Промена избрани ставка непроѕирноста"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Кликни за да внесете промени бојата, промена клик да се промени бојата удар"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Промена правоаголник височина"}, -{"id": "rect_rx", "title": "Промена правоаголник Corner Radius"}, -{"id": "rect_width", "title": "Промена правоаголник Ширина"}, +{"id": "rect_height_tool", "title": "Промена правоаголник височина"}, +{"id": "cornerRadiusLabel", "title": "Промена правоаголник Corner Radius"}, +{"id": "rect_width_tool", "title": "Промена правоаголник Ширина"}, {"id": "relativeToLabel", "textContent": "во поглед на:"}, {"id": "rheightLabel", "textContent": "висина:"}, {"id": "rwidthLabel", "textContent": "Ширина:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Елементи"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Алатка за зумирање"}, -{"id": "zoom", "title": "Промена зум ниво"}, +{"id": "zoom_panel", "title": "Промена зум ниво"}, {"id": "zoomLabel", "textContent": "зум:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.ms.js b/public/svg-edit/editor/locale/lang.ms.js index b76a91b9..90ae19fc 100644 --- a/public/svg-edit/editor/locale/lang.ms.js +++ b/public/svg-edit/editor/locale/lang.ms.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Rata relatif ..."}, -{"id": "angle", "title": "Namakan sudut putaran"}, +{"id": "tool_angle", "title": "Namakan sudut putaran"}, {"id": "angleLabel", "textContent": "sudut:"}, {"id": "bkgnd_color", "title": "Mengubah warna latar belakang / keburaman"}, {"id": "circle_cx", "title": "Mengubah koordinat bulatan cx"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Muat kandungan lapisan"}, {"id": "fit_to_sel", "textContent": "Fit seleksi"}, {"id": "font_family", "title": "Tukar Font Keluarga"}, -{"id": "font_size", "title": "Ubah Saiz Font"}, -{"id": "group_opacity", "title": "Mengubah item yang dipilih keburaman"}, +{"id": "tool_font_size", "title": "Ubah Saiz Font"}, +{"id": "tool_opacity", "title": "Mengubah item yang dipilih keburaman"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klik untuk menukar warna mengisi, shift-klik untuk menukar warna stroke"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Perubahan quality persegi panjang"}, -{"id": "rect_rx", "title": "Tukar Corner Rectangle Radius"}, -{"id": "rect_width", "title": "Tukar persegi panjang lebar"}, +{"id": "rect_height_tool", "title": "Perubahan quality persegi panjang"}, +{"id": "cornerRadiusLabel", "title": "Tukar Corner Rectangle Radius"}, +{"id": "rect_width_tool", "title": "Tukar persegi panjang lebar"}, {"id": "relativeToLabel", "textContent": "relatif:"}, {"id": "rheightLabel", "textContent": "height:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elemen"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Mengubah peringkat pembesaran"}, +{"id": "zoom_panel", "title": "Mengubah peringkat pembesaran"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.mt.js b/public/svg-edit/editor/locale/lang.mt.js index 70e3c859..6e9fee5b 100644 --- a/public/svg-edit/editor/locale/lang.mt.js +++ b/public/svg-edit/editor/locale/lang.mt.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Jallinjaw relattiv għall - ..."}, -{"id": "angle", "title": "Angolu ta 'rotazzjoni Bidla"}, +{"id": "tool_angle", "title": "Angolu ta 'rotazzjoni Bidla"}, {"id": "angleLabel", "textContent": "angolu:"}, {"id": "bkgnd_color", "title": "Bidla fil-kulur fl-isfond / opaċità"}, {"id": "circle_cx", "title": "CX ċirku Tibdil jikkoordinaw"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Fit-kontenut ta 'saff għal"}, {"id": "fit_to_sel", "textContent": "Fit-għażla"}, {"id": "font_family", "title": "Bidla Font Familja"}, -{"id": "font_size", "title": "Change font size"}, -{"id": "group_opacity", "title": "Bidla magħżula opaċità partita"}, +{"id": "tool_font_size", "title": "Change font size"}, +{"id": "tool_opacity", "title": "Bidla magħżula opaċità partita"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Ikklikkja biex timla l-bidla fil-kulur, ikklikkja-bidla għall-bidla color stroke"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Għoli rettangolu Bidla"}, -{"id": "rect_rx", "title": "Bidla Rectangle Corner Radius"}, -{"id": "rect_width", "title": "Wisa 'rettangolu Bidla"}, +{"id": "rect_height_tool", "title": "Għoli rettangolu Bidla"}, +{"id": "cornerRadiusLabel", "title": "Bidla Rectangle Corner Radius"}, +{"id": "rect_width_tool", "title": "Wisa 'rettangolu Bidla"}, {"id": "relativeToLabel", "textContent": "relattiv għall -:"}, {"id": "rheightLabel", "textContent": "għoli:"}, {"id": "rwidthLabel", "textContent": "wisa ':"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Bidla zoom livell"}, +{"id": "zoom_panel", "title": "Bidla zoom livell"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.nl.js b/public/svg-edit/editor/locale/lang.nl.js index e104353b..651d3f7b 100644 --- a/public/svg-edit/editor/locale/lang.nl.js +++ b/public/svg-edit/editor/locale/lang.nl.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Uitlijnen relatief ten opzichte van ..."}, -{"id": "angle", "title": "Draai"}, +{"id": "tool_angle", "title": "Draai"}, {"id": "angleLabel", "textContent": "Hoek:"}, {"id": "bkgnd_color", "title": "Verander achtergrond kleur/doorzichtigheid"}, {"id": "circle_cx", "title": "Verander het X coordinaat van het cirkel middelpunt"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Pas om laag inhoud"}, {"id": "fit_to_sel", "textContent": "Pas om selectie"}, {"id": "font_family", "title": "Verander lettertype"}, -{"id": "font_size", "title": "Verander lettertype grootte"}, -{"id": "group_opacity", "title": "Verander opaciteit geselecteerde item"}, +{"id": "tool_font_size", "title": "Verander lettertype grootte"}, +{"id": "tool_opacity", "title": "Verander opaciteit geselecteerde item"}, {"id": "icon_large", "textContent": "Groot"}, {"id": "icon_medium", "textContent": "Gemiddeld"}, {"id": "icon_small", "textContent": "Klein"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klik om de vul kleur te veranderen, shift-klik om de lijn kleur te veranderen"}, {"id": "path_node_x", "title": "Verander X coordinaat knooppunt"}, {"id": "path_node_y", "title": "Verander Y coordinaat knooppunt"}, -{"id": "rect_height", "title": "Verander hoogte rechthoek"}, -{"id": "rect_rx", "title": "Verander hoekradius rechthoek"}, -{"id": "rect_width", "title": "Verander breedte rechthoek"}, +{"id": "rect_height_tool", "title": "Verander hoogte rechthoek"}, +{"id": "cornerRadiusLabel", "title": "Verander hoekradius rechthoek"}, +{"id": "rect_width_tool", "title": "Verander breedte rechthoek"}, {"id": "relativeToLabel", "textContent": "Relatief ten opzichte van:"}, {"id": "rheightLabel", "textContent": "Hoogte:"}, {"id": "rwidthLabel", "textContent": "Breedte:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Groepering opheffen"}, {"id": "tool_wireframe", "title": "Draadmodel"}, {"id": "tool_zoom", "title": "Zoom"}, -{"id": "zoom", "title": "In-/uitzoomen"}, +{"id": "zoom_panel", "title": "In-/uitzoomen"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "L a g e n", "title": "Sleep naar links/rechts om het zijpaneel te vergroten/verkleinen"}, { diff --git a/public/svg-edit/editor/locale/lang.no.js b/public/svg-edit/editor/locale/lang.no.js index 33353a43..e1a5f6dc 100644 --- a/public/svg-edit/editor/locale/lang.no.js +++ b/public/svg-edit/editor/locale/lang.no.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Juster i forhold til ..."}, -{"id": "angle", "title": "Endre rotasjonsvinkelen"}, +{"id": "tool_angle", "title": "Endre rotasjonsvinkelen"}, {"id": "angleLabel", "textContent": "vinkel:"}, {"id": "bkgnd_color", "title": "Endre bakgrunnsfarge / opacity"}, {"id": "circle_cx", "title": "Endre sirkelens CX koordinatsystem"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Fit to lag innhold"}, {"id": "fit_to_sel", "textContent": "Tilpass til valg"}, {"id": "font_family", "title": "Change Font Family"}, -{"id": "font_size", "title": "Endre skriftstørrelse"}, -{"id": "group_opacity", "title": "Endre valgte elementet opasitet"}, +{"id": "tool_font_size", "title": "Endre skriftstørrelse"}, +{"id": "tool_opacity", "title": "Endre valgte elementet opasitet"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Click å endre fyllfarge, shift-klikke for å endre slag farge"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Endre rektangel høyde"}, -{"id": "rect_rx", "title": "Endre rektangel Corner Radius"}, -{"id": "rect_width", "title": "Endre rektangel bredde"}, +{"id": "rect_height_tool", "title": "Endre rektangel høyde"}, +{"id": "cornerRadiusLabel", "title": "Endre rektangel Corner Radius"}, +{"id": "rect_width_tool", "title": "Endre rektangel bredde"}, {"id": "relativeToLabel", "textContent": "i forhold til:"}, {"id": "rheightLabel", "textContent": "høyde:"}, {"id": "rwidthLabel", "textContent": "Bredde:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Dele opp Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Endre zoomnivå"}, +{"id": "zoom_panel", "title": "Endre zoomnivå"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.pl.js b/public/svg-edit/editor/locale/lang.pl.js index ded52303..9f141883 100644 --- a/public/svg-edit/editor/locale/lang.pl.js +++ b/public/svg-edit/editor/locale/lang.pl.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Dostosowanie w stosunku do ..."}, -{"id": "angle", "title": "Zmiana kąta obrotu"}, +{"id": "tool_angle", "title": "Zmiana kąta obrotu"}, {"id": "angleLabel", "textContent": "kąt:"}, {"id": "bkgnd_color", "title": "Zmień kolor tła / opacity"}, {"id": "circle_cx", "title": "Zmiana koła CX koordynacji"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Dopasuj do zawartości warstwy"}, {"id": "fit_to_sel", "textContent": "Dopasuj do wyboru"}, {"id": "font_family", "title": "Zmiana czcionki Rodzina"}, -{"id": "font_size", "title": "Zmień rozmiar czcionki"}, -{"id": "group_opacity", "title": "Zmiana stron przezroczystość elementu"}, +{"id": "tool_font_size", "title": "Zmień rozmiar czcionki"}, +{"id": "tool_opacity", "title": "Zmiana stron przezroczystość elementu"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Kliknij, aby zmienić kolor wypełnienia, shift kliknij, aby zmienić kolor skok"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Zmiana wysokości prostokąta"}, -{"id": "rect_rx", "title": "Zmiana prostokąt Corner Radius"}, -{"id": "rect_width", "title": "Szerokość prostokąta Zmień"}, +{"id": "rect_height_tool", "title": "Zmiana wysokości prostokąta"}, +{"id": "cornerRadiusLabel", "title": "Zmiana prostokąt Corner Radius"}, +{"id": "rect_width_tool", "title": "Szerokość prostokąta Zmień"}, {"id": "relativeToLabel", "textContent": "w stosunku do:"}, {"id": "rheightLabel", "textContent": "Wysokość:"}, {"id": "rwidthLabel", "textContent": "szerokość:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Elementy Rozgrupuj"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Zmiana poziomu powiększenia"}, +{"id": "zoom_panel", "title": "Zmiana poziomu powiększenia"}, {"id": "zoomLabel", "textContent": "Zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.pt-PT.js b/public/svg-edit/editor/locale/lang.pt-PT.js index c666255d..415c5424 100644 --- a/public/svg-edit/editor/locale/lang.pt-PT.js +++ b/public/svg-edit/editor/locale/lang.pt-PT.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Alinhar em relação a ..."}, -{"id": "angle", "title": "Alterar o ângulo de rotação"}, +{"id": "tool_angle", "title": "Alterar o ângulo de rotação"}, {"id": "angleLabel", "textContent": "ângulo:"}, {"id": "bkgnd_color", "title": "Mudar a cor de fundo / opacidade"}, {"id": "circle_cx", "title": "Cx Mudar círculo de coordenadas"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Ajustar o conteúdo da camada de"}, {"id": "fit_to_sel", "textContent": "Ajustar à selecção"}, {"id": "font_family", "title": "Alterar fonte Família"}, -{"id": "font_size", "title": "Alterar tamanho de letra"}, -{"id": "group_opacity", "title": "Mude a opacidade item selecionado"}, +{"id": "tool_font_size", "title": "Alterar tamanho de letra"}, +{"id": "tool_opacity", "title": "Mude a opacidade item selecionado"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Clique para mudar a cor de preenchimento, shift-clique para mudar a cor do curso"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Alterar altura do retângulo"}, -{"id": "rect_rx", "title": "Alterar Corner Rectangle Radius"}, -{"id": "rect_width", "title": "Alterar a largura retângulo"}, +{"id": "rect_height_tool", "title": "Alterar altura do retângulo"}, +{"id": "cornerRadiusLabel", "title": "Alterar Corner Rectangle Radius"}, +{"id": "rect_width_tool", "title": "Alterar a largura retângulo"}, {"id": "relativeToLabel", "textContent": "em relação ao:"}, {"id": "rheightLabel", "textContent": "height:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Elementos Desagrupar"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Alterar o nível de zoom"}, +{"id": "zoom_panel", "title": "Alterar o nível de zoom"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.ro.js b/public/svg-edit/editor/locale/lang.ro.js index d9e67698..ccb9a07e 100644 --- a/public/svg-edit/editor/locale/lang.ro.js +++ b/public/svg-edit/editor/locale/lang.ro.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Alinierea în raport cu ..."}, -{"id": "angle", "title": "Schimbarea unghiul de rotatie"}, +{"id": "tool_angle", "title": "Schimbarea unghiul de rotatie"}, {"id": "angleLabel", "textContent": "Unghi:"}, {"id": "bkgnd_color", "title": "Schimbare culoare de fundal / opacitate"}, {"id": "circle_cx", "title": "Schimbarea coordonatei CX a cercului"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Potrivire la conţinutul stratului"}, {"id": "fit_to_sel", "textContent": "Potrivire la selecţie"}, {"id": "font_family", "title": "Modificare familie de Fonturi"}, -{"id": "font_size", "title": "Schimbă dimensiunea fontului"}, -{"id": "group_opacity", "title": "Schimbarea selectat opacitate element"}, +{"id": "tool_font_size", "title": "Schimbă dimensiunea fontului"}, +{"id": "tool_opacity", "title": "Schimbarea selectat opacitate element"}, {"id": "icon_large", "textContent": "Mari"}, {"id": "icon_medium", "textContent": "Medii"}, {"id": "icon_small", "textContent": "Mici"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Faceţi clic a schimba culoare de umplere, Shift-click pentru a schimba culoarea de contur"}, {"id": "path_node_x", "title": "Schimba coordonata x a punctului"}, {"id": "path_node_y", "title": "Schimba coordonata x a punctului"}, -{"id": "rect_height", "title": "Schimbarea înălţimii dreptunghiului"}, -{"id": "rect_rx", "title": "Schimbarea Razei Colţului Dreptunghiului"}, -{"id": "rect_width", "title": "Schimbarea lăţimii dreptunghiului"}, +{"id": "rect_height_tool", "title": "Schimbarea înălţimii dreptunghiului"}, +{"id": "cornerRadiusLabel", "title": "Schimbarea Razei Colţului Dreptunghiului"}, +{"id": "rect_width_tool", "title": "Schimbarea lăţimii dreptunghiului"}, {"id": "relativeToLabel", "textContent": "în raport cu:"}, {"id": "rheightLabel", "textContent": "înălţime:"}, {"id": "rwidthLabel", "textContent": "lăţime:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Anulare Grupare Elemente"}, {"id": "tool_wireframe", "title": "Mod Schelet"}, {"id": "tool_zoom", "title": "Unealta de Zoom"}, -{"id": "zoom", "title": "Schimbarea nivelului de zoom"}, +{"id": "zoom_panel", "title": "Schimbarea nivelului de zoom"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "S t r a t u r i", "title": "Trage stanga/dreapta pentru redimensionare panou lateral"}, { diff --git a/public/svg-edit/editor/locale/lang.ru.js b/public/svg-edit/editor/locale/lang.ru.js index 0da37807..f19807ff 100644 --- a/public/svg-edit/editor/locale/lang.ru.js +++ b/public/svg-edit/editor/locale/lang.ru.js @@ -1,158 +1,158 @@ [ -{"id":"layer_new","title":"Создать слой"}, -{"id":"layer_delete","title":"Удалить слой"}, -{"id":"layer_rename","title":"Переименовать Слой"}, -{"id":"layer_up","title":"Поднять слой"}, -{"id":"layer_down","title":"Опустить слой"}, -{"id":"tool_clear","textContent":"Создать изображение"}, -{"id":"tool_open","textContent":"Открыть изображение"}, -{"id":"tool_save","textContent":"Сохранить изображение"}, -{"id":"tool_docprops","textContent":"Свойства документа"}, -{"id":"tool_source","title":"Редактировать исходный код"}, -{"id":"tool_undo","title":"Отменить"}, -{"id":"tool_redo","title":"Вернуть"}, -{"id":"tool_clone","title":"Создать копию элемента"}, -{"id":"tool_delete","title":"Удалить элемент"}, -{"id":"tool_move_top","title":"Поднять"}, -{"id":"tool_move_bottom","title":"Опустить"}, -{"id":"group_opacity","title":"Изменить непрозрачность элемента"}, -{"id":"angle","title":"Изменить угол поворота"}, -{"id":"tool_clone_multi","title":"Создать копию элементов"}, -{"id":"tool_delete_multi","title":"Удалить выбранные элементы"}, -{"id":"tool_alignleft","title":"По левому краю"}, -{"id":"tool_aligncenter","title":"Центрировать по вертикальной оси"}, -{"id":"tool_alignright","title":"По правому краю"}, -{"id":"tool_aligntop","title":"Выровнять по верхнему краю"}, -{"id":"tool_alignmiddle","title":"Центрировать по горизонтальной оси"}, -{"id":"tool_alignbottom","title":"Выровнять по нижнему краю"}, -{"id":"align_relative_to","title":"Выровнять по отношению к ..."}, -{"id":"tool_group","title":"Создать группу элементов"}, -{"id":"tool_ungroup","title":"Разгруппировать элементы"}, -{"id":"rect_width","title":"Измененить ширину прямоугольника"}, -{"id":"rect_height","title":"Изменениe высоту прямоугольника"}, -{"id":"rect_rx","title":"Изменить радиус скругления углов прямоугольника"}, -{"id":"image_width","title":"Изменить ширину изображения"}, -{"id":"image_height","title":"Изменить высоту изображения"}, -{"id":"image_url","title":"Изменить URL"}, -{"id":"circle_cx","title":"Изменить горизонтальный координат (CX) окружности"}, -{"id":"circle_cy","title":"Изменить вертикальный координат (CY) окружности"}, -{"id":"circle_r","title":"Изменить радиус окружности"}, -{"id":"ellipse_cx","title":"Изменить горизонтальный координат (CX) эллипса"}, -{"id":"ellipse_cy","title":"Изменить вертикальный координат (CY) эллипса"}, -{"id":"ellipse_rx","title":"Изменить горизонтальный радиус эллипса"}, -{"id":"ellipse_ry","title":"Изменить вертикальный радиус эллипса"}, -{"id":"line_x1","title":"Изменить горизонтальный координат X начальной точки линии"}, -{"id":"line_y1","title":"Изменить вертикальный координат Y начальной точки линии"}, -{"id":"line_x2","title":"Изменить горизонтальный координат X конечной точки линии"}, -{"id":"line_y2","title":"Изменить вертикальный координат Y конечной точки линии"}, -{"id":"tool_bold","title":"Жирный"}, -{"id":"tool_italic","title":"Курсив"}, -{"id":"font_family","title":"Изменить семейство шрифтов"}, -{"id":"font_size","title":"Изменить размер шрифта"}, -{"id":"text","title":"Изменить содержание текста"}, -{"id":"tool_select","title":"Выделить"}, -{"id":"tool_fhpath","title":"Карандаш"}, -{"id":"tool_line","title":"Линия"}, -{"id":"tools_rect_show","title":"Прямоугольник / квадрат"}, -{"id":"tools_ellipse_show","title":"Эллипс / окружность"}, -{"id":"tool_text","title":"Текст"}, -{"id":"tool_path","title":"Контуры"}, -{"id":"tool_image","title":"Изображение"}, -{"id":"tool_zoom","title":"Лупа"}, -{"id":"zoom","title":"Изменить масштаб"}, -{"id":"fill_color","title":"Изменить цвет заливки"}, -{"id":"stroke_color","title":"Изменить цвет обводки"}, -{"id":"stroke_width","title":"Изменить толщину обводки"}, -{"id":"stroke_style","title":"Изменить стиль обводки"}, -{"id":"palette","title":"Нажмите для изменения цвета заливки, Shift-Click изменить цвета обводки"}, -{"id":"tool_square","title":"Квадрат"}, -{"id":"tool_rect","title":"Прямоугольник"}, -{"id":"tool_fhrect","title":"Прямоугольник от руки"}, -{"id":"tool_circle","title":"Окружность"}, -{"id":"tool_ellipse","title":"Эллипс"}, -{"id":"tool_fhellipse","title":"Эллипс от руки"}, -{"id":"bkgnd_color","title":"Изменить цвет фона или прозрачность"}, -{"id":"rwidthLabel","textContent":"Ширина:"}, -{"id":"rheightLabel","textContent":"Высота:"}, -{"id":"cornerRadiusLabel","textContent":"Радиус закругленности угла"}, -{"id":"iwidthLabel","textContent":"Ширина:"}, -{"id":"iheightLabel","textContent":"Высота:"}, -{"id":"svginfo_width","textContent":"Ширина:"}, -{"id":"svginfo_height","textContent":"Высота:"}, -{"id":"angleLabel","textContent":"Угол:"}, -{"id":"relativeToLabel","textContent":"По отношению к "}, -{"id":"zoomLabel","textContent":"Масштаб:"}, -{"id":"layersLabel","textContent":"Слои:"}, -{"id":"selectedPredefined","textContent":"Выбирать предопределенный размер"}, -{"id":"fitToContent","textContent":"Под размер содержимого"}, -{"id":"tool_source_save","textContent":"Сохранить"}, -{"id":"tool_docprops_save","textContent":"Сохранить"}, -{"id":"tool_docprops_cancel","textContent":"Отменить"}, -{"id":"tool_source_cancel","textContent":"Отменить"}, -{"id":"fit_to_all","textContent":"Под размер всех слоев"}, -{"id":"fit_to_layer_content","textContent":"Под размер содержания слоя"}, -{"id":"fit_to_sel","textContent":"Под размер выделенного"}, -{"id":"fit_to_canvas","textContent":"Под размер холста"}, -{"id":"selected_objects","textContent":"Выделенные объекты"}, -{"id":"largest_object","textContent":"Наибольший объект"}, -{"id":"smallest_object","textContent":"Самый маленький объект"}, -{"id":"page","textContent":"страница"}, -{"id":"fill_tool_bottom","textContent":"Заливка:"}, -{"id":"stroke_tool_bottom","textContent":"Обводка:"}, -{"id":"path_node_x","title":"Изменить горизонтальную координату узла"}, -{"id":"path_node_y","title":"Изменить вертикальную координату узла"}, -{"id":"seg_type","title":"Изменить вид"}, -{"id":"straight_segments","textContent":"Отрезок"}, -{"id":"curve_segments","textContent":"Сплайн"}, -{"id":"tool_node_clone","title":"Создать копию узла"}, -{"id":"tool_node_delete","title":"Удалить узел"}, -{"id":"selLayerLabel","textContent":"Переместить выделенные элементы:"}, -{"id":"selLayerNames","title":"Переместить выделенные элементы на другой слой"}, -{"id":"sidepanel_handle","title":"Перетащить налево или направо","textContent":"С л о и"}, -{"id":"tool_wireframe","title":"Каркас"}, -{"id":"svginfo_image_props","textContent":"Свойства изображения"}, -{"id":"svginfo_title","textContent":"Название"}, -{"id":"svginfo_dim","textContent":"Размеры холста"}, -{"id":"includedImages","textContent":"Встроенные изображения"}, -{"id":"image_opt_embed","textContent":"Локальные файлы"}, -{"id":"image_opt_ref","textContent":"По ссылкам"}, -{"id":"svginfo_editor_prefs","textContent":"Параметры"}, -{"id":"svginfo_lang","textContent":"Язык"}, -{"id":"svginfo_change_background","textContent":"Фон"}, -{"id":"svginfo_bg_note","textContent":"(Фон не сохранится вместе с изображением.)"}, -{"id":"svginfo_icons","textContent":"Размер значков"}, -{"id":"icon_small","textContent":"Малые"}, -{"id":"icon_medium","textContent":"Средние"}, -{"id":"icon_large","textContent":"Большие"}, -{"id":"icon_xlarge","textContent":"Огромные"}, -{"id":"selected_x","title":"Изменить горизонтальный координат"}, -{"id":"selected_y","title":"Изменить вертикальный координат"}, -{"id":"tool_topath","title":"В контур"}, -{"id":"tool_reorient","title":"Изменить ориентацию контура"}, -{"id":"tool_node_link","title":"Связать узлы"}, +{"id": "align_relative_to", "title": "Выровнять по отношению к ..."}, +{"id": "tool_angle", "title": "Изменить угол поворота"}, +{"id": "angleLabel", "textContent": "Угол:"}, +{"id": "bkgnd_color", "title": "Изменить цвет фона или прозрачность"}, +{"id": "circle_cx", "title": "Изменить горизонтальный координат (CX) окружности"}, +{"id": "circle_cy", "title": "Изменить вертикальный координат (CY) окружности"}, +{"id": "circle_r", "title": "Изменить радиус окружности"}, +{"id": "cornerRadiusLabel", "textContent": "Радиус закругленности угла"}, +{"id": "curve_segments", "textContent": "Сплайн"}, +{"id": "ellipse_cx", "title": "Изменить горизонтальный координат (CX) эллипса"}, +{"id": "ellipse_cy", "title": "Изменить вертикальный координат (CY) эллипса"}, +{"id": "ellipse_rx", "title": "Изменить горизонтальный радиус эллипса"}, +{"id": "ellipse_ry", "title": "Изменить вертикальный радиус эллипса"}, +{"id": "fill_color", "title": "Изменить цвет заливки"}, +{"id": "fill_tool_bottom", "textContent": "Заливка:"}, +{"id": "fitToContent", "textContent": "Под размер содержимого"}, +{"id": "fit_to_all", "textContent": "Под размер всех слоев"}, +{"id": "fit_to_canvas", "textContent": "Под размер холста"}, +{"id": "fit_to_layer_content", "textContent": "Под размер содержания слоя"}, +{"id": "fit_to_sel", "textContent": "Под размер выделенного"}, +{"id": "font_family", "title": "Изменить семейство шрифтов"}, +{"id": "tool_font_size", "title": "Изменить размер шрифта"}, +{"id": "tool_opacity", "title": "Изменить непрозрачность элемента"}, +{"id": "icon_large", "textContent": "Большие"}, +{"id": "icon_medium", "textContent": "Средние"}, +{"id": "icon_small", "textContent": "Малые"}, +{"id": "icon_xlarge", "textContent": "Огромные"}, +{"id": "iheightLabel", "textContent": "Высота:"}, +{"id": "image_height", "title": "Изменить высоту изображения"}, +{"id": "image_opt_embed", "textContent": "Локальные файлы"}, +{"id": "image_opt_ref", "textContent": "По ссылкам"}, +{"id": "image_url", "title": "Изменить URL"}, +{"id": "image_width", "title": "Изменить ширину изображения"}, +{"id": "includedImages", "textContent": "Встроенные изображения"}, +{"id": "iwidthLabel", "textContent": "Ширина:"}, +{"id": "largest_object", "textContent": "Наибольший объект"}, +{"id": "layer_delete", "title": "Удалить слой"}, +{"id": "layer_down", "title": "Опустить слой"}, +{"id": "layer_new", "title": "Создать слой"}, +{"id": "layer_rename", "title": "Переименовать Слой"}, +{"id": "layer_up", "title": "Поднять слой"}, +{"id": "layersLabel", "textContent": "Слои:"}, +{"id": "line_x1", "title": "Изменить горизонтальный координат X начальной точки линии"}, +{"id": "line_x2", "title": "Изменить горизонтальный координат X конечной точки линии"}, +{"id": "line_y1", "title": "Изменить вертикальный координат Y начальной точки линии"}, +{"id": "line_y2", "title": "Изменить вертикальный координат Y конечной точки линии"}, +{"id": "page", "textContent": "страница"}, +{"id": "palette", "title": "Нажмите для изменения цвета заливки, Shift-Click изменить цвета обводки"}, +{"id": "path_node_x", "title": "Изменить горизонтальную координату узла"}, +{"id": "path_node_y", "title": "Изменить вертикальную координату узла"}, +{"id": "rect_height_tool", "title": "Изменениe высоту прямоугольника"}, +{"id": "cornerRadiusLabel", "title": "Изменить радиус скругления углов прямоугольника"}, +{"id": "rect_width_tool", "title": "Измененить ширину прямоугольника"}, +{"id": "relativeToLabel", "textContent": "По отношению к "}, +{"id": "rheightLabel", "textContent": "Высота:"}, +{"id": "rwidthLabel", "textContent": "Ширина:"}, +{"id": "seg_type", "title": "Изменить вид"}, +{"id": "selLayerLabel", "textContent": "Переместить выделенные элементы:"}, +{"id": "selLayerNames", "title": "Переместить выделенные элементы на другой слой"}, +{"id": "selectedPredefined", "textContent": "Выбирать предопределенный размер"}, +{"id": "selected_objects", "textContent": "Выделенные объекты"}, +{"id": "selected_x", "title": "Изменить горизонтальный координат"}, +{"id": "selected_y", "title": "Изменить вертикальный координат"}, +{"id": "smallest_object", "textContent": "Самый маленький объект"}, +{"id": "straight_segments", "textContent": "Отрезок"}, +{"id": "stroke_color", "title": "Изменить цвет обводки"}, +{"id": "stroke_style", "title": "Изменить стиль обводки"}, +{"id": "stroke_tool_bottom", "textContent": "Обводка:"}, +{"id": "stroke_width", "title": "Изменить толщину обводки"}, +{"id": "svginfo_bg_note", "textContent": "(Фон не сохранится вместе с изображением.)"}, +{"id": "svginfo_change_background", "textContent": "Фон"}, +{"id": "svginfo_dim", "textContent": "Размеры холста"}, +{"id": "svginfo_editor_prefs", "textContent": "Параметры"}, +{"id": "svginfo_height", "textContent": "Высота:"}, +{"id": "svginfo_icons", "textContent": "Размер значков"}, +{"id": "svginfo_image_props", "textContent": "Свойства изображения"}, +{"id": "svginfo_lang", "textContent": "Язык"}, +{"id": "svginfo_title", "textContent": "Название"}, +{"id": "svginfo_width", "textContent": "Ширина:"}, +{"id": "text", "title": "Изменить содержание текста"}, +{"id": "tool_alignbottom", "title": "Выровнять по нижнему краю"}, +{"id": "tool_aligncenter", "title": "Центрировать по вертикальной оси"}, +{"id": "tool_alignleft", "title": "По левому краю"}, +{"id": "tool_alignmiddle", "title": "Центрировать по горизонтальной оси"}, +{"id": "tool_alignright", "title": "По правому краю"}, +{"id": "tool_aligntop", "title": "Выровнять по верхнему краю"}, +{"id": "tool_bold", "title": "Жирный"}, +{"id": "tool_circle", "title": "Окружность"}, +{"id": "tool_clear", "textContent": "Создать изображение"}, +{"id": "tool_clone", "title": "Создать копию элемента"}, +{"id": "tool_clone_multi", "title": "Создать копию элементов"}, +{"id": "tool_delete", "title": "Удалить элемент"}, +{"id": "tool_delete_multi", "title": "Удалить выбранные элементы"}, +{"id": "tool_docprops", "textContent": "Свойства документа"}, +{"id": "tool_docprops_cancel", "textContent": "Отменить"}, +{"id": "tool_docprops_save", "textContent": "Сохранить"}, +{"id": "tool_ellipse", "title": "Эллипс"}, +{"id": "tool_fhellipse", "title": "Эллипс от руки"}, +{"id": "tool_fhpath", "title": "Карандаш"}, +{"id": "tool_fhrect", "title": "Прямоугольник от руки"}, +{"id": "tool_group", "title": "Создать группу элементов"}, +{"id": "tool_image", "title": "Изображение"}, +{"id": "tool_italic", "title": "Курсив"}, +{"id": "tool_line", "title": "Линия"}, +{"id": "tool_move_bottom", "title": "Опустить"}, +{"id": "tool_move_top", "title": "Поднять"}, +{"id": "tool_node_clone", "title": "Создать копию узла"}, +{"id": "tool_node_delete", "title": "Удалить узел"}, +{"id": "tool_node_link", "title": "Связать узлы"}, +{"id": "tool_open", "textContent": "Открыть изображение"}, +{"id": "tool_path", "title": "Контуры"}, +{"id": "tool_rect", "title": "Прямоугольник"}, +{"id": "tool_redo", "title": "Вернуть"}, +{"id": "tool_reorient", "title": "Изменить ориентацию контура"}, +{"id": "tool_save", "textContent": "Сохранить изображение"}, +{"id": "tool_select", "title": "Выделить"}, +{"id": "tool_source", "title": "Редактировать исходный код"}, +{"id": "tool_source_cancel", "textContent": "Отменить"}, +{"id": "tool_source_save", "textContent": "Сохранить"}, +{"id": "tool_square", "title": "Квадрат"}, +{"id": "tool_text", "title": "Текст"}, +{"id": "tool_topath", "title": "В контур"}, +{"id": "tool_undo", "title": "Отменить"}, +{"id": "tool_ungroup", "title": "Разгруппировать элементы"}, +{"id": "tool_wireframe", "title": "Каркас"}, +{"id": "tool_zoom", "title": "Лупа"}, +{"id": "tools_ellipse_show", "title": "Эллипс / окружность"}, +{"id": "tools_rect_show", "title": "Прямоугольник / квадрат"}, +{"id": "zoom_panel", "title": "Изменить масштаб"}, +{"id": "zoomLabel", "textContent": "Масштаб:"}, +{"id": "sidepanel_handle", "textContent": "С л о и", "title": "Перетащить налево или направо"}, { "js_strings": { - "invalidAttrValGiven":"Некорректное значение аргумента", - "noContentToFitTo":"Нет содержания, по которому выровнять.", - "layer":"Слой", - "dupeLayerName":"Слой с этим именем уже существует.", - "enterUniqueLayerName":"Пожалуйста, введите имя для слоя.", - "enterNewLayerName":"Пожалуйста, введите новое имя.", - "layerHasThatName":"Слой уже называется этим именем.", - "QmoveElemsToLayer":"Переместить выделенные элементы на слой '%s'?", - "QwantToClear":"Вы хотите очистить?\nИстория действий будет забыта!", - "QerrorsRevertToSource":"Была проблема при парсинге вашего SVG исходного кода.\nЗаменить его предыдущим SVG кодом?", - "QignoreSourceChanges":"Забыть без сохранения?", - "featNotSupported":"Возможность не реализована", - "enterNewImgURL":"Введите новый URL изображения", - "ok":"OK", - "cancel":"Отменить", - "pathNodeTooltip":"Потащите узел. Чтобы изменить вид отрезка, сделайте двойной щелчок.", - "pathCtrlPtTooltip":"Перетащите для изменения свойвст кривой", - "key_up":"Вверх", - "key_down":"Вниз", - "key_backspace":"Backspace", - "key_del":"Delete" - } + "QerrorsRevertToSource": "Была проблема при парсинге вашего SVG исходного кода.\nЗаменить его предыдущим SVG кодом?", + "QignoreSourceChanges": "Забыть без сохранения?", + "QmoveElemsToLayer": "Переместить выделенные элементы на слой '%s'?", + "QwantToClear": "Вы хотите очистить?\nИстория действий будет забыта!", + "cancel": "Отменить", + "dupeLayerName": "Слой с этим именем уже существует.", + "enterNewImgURL": "Введите новый URL изображения", + "enterNewLayerName": "Пожалуйста, введите новое имя.", + "enterUniqueLayerName": "Пожалуйста, введите имя для слоя.", + "featNotSupported": "Возможность не реализована", + "invalidAttrValGiven": "Некорректное значение аргумента", + "key_backspace": "Backspace", + "key_del": "Delete", + "key_down": "Вниз", + "key_up": "Вверх", + "layer": "Слой", + "layerHasThatName": "Слой уже называется этим именем.", + "noContentToFitTo": "Нет содержания, по которому выровнять.", + "ok": "OK", + "pathCtrlPtTooltip": "Перетащите для изменения свойвст кривой", + "pathNodeTooltip": "Потащите узел. Чтобы изменить вид отрезка, сделайте двойной щелчок." + } } ] \ No newline at end of file diff --git a/public/svg-edit/editor/locale/lang.sk.js b/public/svg-edit/editor/locale/lang.sk.js index 729b0861..a0c5bcc2 100644 --- a/public/svg-edit/editor/locale/lang.sk.js +++ b/public/svg-edit/editor/locale/lang.sk.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Zarovnať relatívne k ..."}, -{"id": "angle", "title": "Zmeniť uhol natočenia"}, +{"id": "tool_angle", "title": "Zmeniť uhol natočenia"}, {"id": "angleLabel", "textContent": "uhol:"}, {"id": "bkgnd_color", "title": "Zmeniť farbu a priehľadnosť pozadia"}, {"id": "circle_cx", "title": "Zmeniť súradnicu X stredu kružnice"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Prispôsobiť obsahu vrstvy"}, {"id": "fit_to_sel", "textContent": "Prispôsobiť výberu"}, {"id": "font_family", "title": "Zmeniť font"}, -{"id": "font_size", "title": "Zmeniť veľkosť písma"}, -{"id": "group_opacity", "title": "Zmeniť prehľadnosť vybraných položiek"}, +{"id": "tool_font_size", "title": "Zmeniť veľkosť písma"}, +{"id": "tool_opacity", "title": "Zmeniť prehľadnosť vybraných položiek"}, {"id": "icon_large", "textContent": "Veľká"}, {"id": "icon_medium", "textContent": "Stredná"}, {"id": "icon_small", "textContent": "Malá"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Kliknutím zmeníte farbu výplne, so Shiftom zmeníte farbu obrysu"}, {"id": "path_node_x", "title": "Zmeniť uzlu súradnicu X"}, {"id": "path_node_y", "title": "Zmeniť uzlu súradnicu Y"}, -{"id": "rect_height", "title": "Zmena výšku obdĺžnika"}, -{"id": "rect_rx", "title": "Zmeniť zaoblenie rohov obdĺžnika"}, -{"id": "rect_width", "title": "Zmeniť šírku obdĺžnika"}, +{"id": "rect_height_tool", "title": "Zmena výšku obdĺžnika"}, +{"id": "cornerRadiusLabel", "title": "Zmeniť zaoblenie rohov obdĺžnika"}, +{"id": "rect_width_tool", "title": "Zmeniť šírku obdĺžnika"}, {"id": "relativeToLabel", "textContent": "vzhľadom k:"}, {"id": "rheightLabel", "textContent": "výška:"}, {"id": "rwidthLabel", "textContent": "šírka:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Zrušiť skupinu"}, {"id": "tool_wireframe", "title": "Drôtový model"}, {"id": "tool_zoom", "title": "Priblíženie"}, -{"id": "zoom", "title": "Zmena priblíženia"}, +{"id": "zoom_panel", "title": "Zmena priblíženia"}, {"id": "zoomLabel", "textContent": "priblíženie:"}, {"id": "sidepanel_handle", "textContent": "V r s t v y", "title": "Ťahajte vľavo/vpravo na zmenu veľkosti"}, { diff --git a/public/svg-edit/editor/locale/lang.sl.js b/public/svg-edit/editor/locale/lang.sl.js index dff9e64b..3f89a158 100644 --- a/public/svg-edit/editor/locale/lang.sl.js +++ b/public/svg-edit/editor/locale/lang.sl.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Poravnaj glede na ..."}, -{"id": "angle", "title": "Sprememba kota rotacije"}, +{"id": "tool_angle", "title": "Sprememba kota rotacije"}, {"id": "angleLabel", "textContent": "angle:"}, {"id": "bkgnd_color", "title": "Spreminjanje barve ozadja / motnosti"}, {"id": "circle_cx", "title": "Spremeni krog's CX usklajujejo"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Fit na plast vsebine"}, {"id": "fit_to_sel", "textContent": "Fit za izbor"}, {"id": "font_family", "title": "Change Font Family"}, -{"id": "font_size", "title": "Spremeni velikost pisave"}, -{"id": "group_opacity", "title": "Spremeni izbran predmet motnosti"}, +{"id": "tool_font_size", "title": "Spremeni velikost pisave"}, +{"id": "tool_opacity", "title": "Spremeni izbran predmet motnosti"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Kliknite, če želite spremeniti barvo polnila, premik miške kliknite spremeniti barvo kap"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Spremeni pravokotniku višine"}, -{"id": "rect_rx", "title": "Spremeni Pravokotnik Corner Radius"}, -{"id": "rect_width", "title": "Spremeni pravokotnik širine"}, +{"id": "rect_height_tool", "title": "Spremeni pravokotniku višine"}, +{"id": "cornerRadiusLabel", "title": "Spremeni Pravokotnik Corner Radius"}, +{"id": "rect_width_tool", "title": "Spremeni pravokotnik širine"}, {"id": "relativeToLabel", "textContent": "glede na:"}, {"id": "rheightLabel", "textContent": "višina:"}, {"id": "rwidthLabel", "textContent": "širina:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Razdruži Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Spreminjanje povečave"}, +{"id": "zoom_panel", "title": "Spreminjanje povečave"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.sq.js b/public/svg-edit/editor/locale/lang.sq.js index ef465be2..9835a6dc 100644 --- a/public/svg-edit/editor/locale/lang.sq.js +++ b/public/svg-edit/editor/locale/lang.sq.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Vendose në lidhje me ..."}, -{"id": "angle", "title": "Kënd Ndryshimi rrotullim"}, +{"id": "tool_angle", "title": "Kënd Ndryshimi rrotullim"}, {"id": "angleLabel", "textContent": "kënd:"}, {"id": "bkgnd_color", "title": "Change color background / patejdukshmëri"}, {"id": "circle_cx", "title": "Cx rrethi Ndryshimi i bashkërenduar"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Shtresë Fit to content"}, {"id": "fit_to_sel", "textContent": "Fit to Selection"}, {"id": "font_family", "title": "Ndryshimi Font Family"}, -{"id": "font_size", "title": "Ndryshimi Font Size"}, -{"id": "group_opacity", "title": "Ndryshimi zgjedhur errësirë item"}, +{"id": "tool_font_size", "title": "Ndryshimi Font Size"}, +{"id": "tool_opacity", "title": "Ndryshimi zgjedhur errësirë item"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klikoni për të ndryshuar mbushur me ngjyra, shift-klikoni për të ndryshuar ngjyrën pash"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Height Ndryshimi drejtkëndësh"}, -{"id": "rect_rx", "title": "Ndryshimi Rectangle Corner Radius"}, -{"id": "rect_width", "title": "Width Ndryshimi drejtkëndësh"}, +{"id": "rect_height_tool", "title": "Height Ndryshimi drejtkëndësh"}, +{"id": "cornerRadiusLabel", "title": "Ndryshimi Rectangle Corner Radius"}, +{"id": "rect_width_tool", "title": "Width Ndryshimi drejtkëndësh"}, {"id": "relativeToLabel", "textContent": "lidhje me:"}, {"id": "rheightLabel", "textContent": "Femije:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Elemente Ungroup"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Ndryshimi zoom nivel"}, +{"id": "zoom_panel", "title": "Ndryshimi zoom nivel"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.sr.js b/public/svg-edit/editor/locale/lang.sr.js index 4b2bf475..69864b3e 100644 --- a/public/svg-edit/editor/locale/lang.sr.js +++ b/public/svg-edit/editor/locale/lang.sr.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Алигн у односу на ..."}, -{"id": "angle", "title": "Промени ротације Угао"}, +{"id": "tool_angle", "title": "Промени ротације Угао"}, {"id": "angleLabel", "textContent": "Угао:"}, {"id": "bkgnd_color", "title": "Промена боје позадине / непрозирност"}, {"id": "circle_cx", "title": "Промена круг'с ЦКС координатни"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Уклопи у слоју садржај"}, {"id": "fit_to_sel", "textContent": "Уклопи у избор"}, {"id": "font_family", "title": "Цханге фонт породицу"}, -{"id": "font_size", "title": "Цханге фонт сизе"}, -{"id": "group_opacity", "title": "Промена изабране ставке непрозирност"}, +{"id": "tool_font_size", "title": "Цханге фонт сизе"}, +{"id": "tool_opacity", "title": "Промена изабране ставке непрозирност"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Кликните да бисте променили боју попуне, Схифт-кликните да промените боју удар"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Промени правоугаоник висина"}, -{"id": "rect_rx", "title": "Промена правоугаоник Кутак радијуса"}, -{"id": "rect_width", "title": "Промени правоугаоник ширине"}, +{"id": "rect_height_tool", "title": "Промени правоугаоник висина"}, +{"id": "cornerRadiusLabel", "title": "Промена правоугаоник Кутак радијуса"}, +{"id": "rect_width_tool", "title": "Промени правоугаоник ширине"}, {"id": "relativeToLabel", "textContent": "у односу на:"}, {"id": "rheightLabel", "textContent": "Висина:"}, {"id": "rwidthLabel", "textContent": "Ширина:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Разгрупирање Елементи"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Алатка за зумирање"}, -{"id": "zoom", "title": "Промените ниво зумирања"}, +{"id": "zoom_panel", "title": "Промените ниво зумирања"}, {"id": "zoomLabel", "textContent": "зум:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.sv.js b/public/svg-edit/editor/locale/lang.sv.js index 552a0a22..c3d1c4fe 100644 --- a/public/svg-edit/editor/locale/lang.sv.js +++ b/public/svg-edit/editor/locale/lang.sv.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Justera förhållande till ..."}, -{"id": "angle", "title": "Ändra rotationsvinkel"}, +{"id": "tool_angle", "title": "Ändra rotationsvinkel"}, {"id": "angleLabel", "textContent": "vinkel:"}, {"id": "bkgnd_color", "title": "Ändra bakgrundsfärg / opacitet"}, {"id": "circle_cx", "title": "Ändra cirkeln cx samordna"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Anpassa till lager innehåll"}, {"id": "fit_to_sel", "textContent": "Anpassa till val"}, {"id": "font_family", "title": "Ändra Typsnitt"}, -{"id": "font_size", "title": "Ändra textstorlek"}, -{"id": "group_opacity", "title": "Ändra markerat objekt opacitet"}, +{"id": "tool_font_size", "title": "Ändra textstorlek"}, +{"id": "tool_opacity", "title": "Ändra markerat objekt opacitet"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Klicka för att ändra fyllningsfärg, shift-klicka för att ändra färgar"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Ändra rektangel höjd"}, -{"id": "rect_rx", "title": "Ändra rektangel hörnradie"}, -{"id": "rect_width", "title": "Ändra rektangel bredd"}, +{"id": "rect_height_tool", "title": "Ändra rektangel höjd"}, +{"id": "cornerRadiusLabel", "title": "Ändra rektangel hörnradie"}, +{"id": "rect_width_tool", "title": "Ändra rektangel bredd"}, {"id": "relativeToLabel", "textContent": "jämfört:"}, {"id": "rheightLabel", "textContent": "Höjd:"}, {"id": "rwidthLabel", "textContent": "Bredd:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Dela Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoomverktyget"}, -{"id": "zoom", "title": "Ändra zoomnivå"}, +{"id": "zoom_panel", "title": "Ändra zoomnivå"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.sw.js b/public/svg-edit/editor/locale/lang.sw.js index 25720d5f..0ef2fbf4 100644 --- a/public/svg-edit/editor/locale/lang.sw.js +++ b/public/svg-edit/editor/locale/lang.sw.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Align jamaa na ..."}, -{"id": "angle", "title": "Change mzunguko vinkel"}, +{"id": "tool_angle", "title": "Change mzunguko vinkel"}, {"id": "angleLabel", "textContent": "angle:"}, {"id": "bkgnd_color", "title": "Change background color / opacity"}, {"id": "circle_cx", "title": "Change mduara's CX kuratibu"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Waliopo safu content"}, {"id": "fit_to_sel", "textContent": "Waliopo uteuzi"}, {"id": "font_family", "title": "Change font Family"}, -{"id": "font_size", "title": "Change font Size"}, -{"id": "group_opacity", "title": "Change selected opacity punkt"}, +{"id": "tool_font_size", "title": "Change font Size"}, +{"id": "tool_opacity", "title": "Change selected opacity punkt"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Click kubadili kujaza color, skiftarbete-click kubadili kiharusi color"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Change Mstatili height"}, -{"id": "rect_rx", "title": "Change Mstatili Corner Radius"}, -{"id": "rect_width", "title": "Change Mstatili width"}, +{"id": "rect_height_tool", "title": "Change Mstatili height"}, +{"id": "cornerRadiusLabel", "title": "Change Mstatili Corner Radius"}, +{"id": "rect_width_tool", "title": "Change Mstatili width"}, {"id": "relativeToLabel", "textContent": "relativa att:"}, {"id": "rheightLabel", "textContent": "height:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Change zoom ngazi"}, +{"id": "zoom_panel", "title": "Change zoom ngazi"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.th.js b/public/svg-edit/editor/locale/lang.th.js index 2ffb0866..4f689017 100644 --- a/public/svg-edit/editor/locale/lang.th.js +++ b/public/svg-edit/editor/locale/lang.th.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "จัดชิดเทียบกับ ..."}, -{"id": "angle", "title": "มุมหมุนเปลี่ยน"}, +{"id": "tool_angle", "title": "มุมหมุนเปลี่ยน"}, {"id": "angleLabel", "textContent": "มุม:"}, {"id": "bkgnd_color", "title": "สีพื้นหลังเปลี่ยน / ความทึบ"}, {"id": "circle_cx", "title": "Cx วงกลมเปลี่ยนของพิกัด"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "พอดีเนื้อหาชั้นที่"}, {"id": "fit_to_sel", "textContent": "เหมาะสมในการเลือก"}, {"id": "font_family", "title": "ครอบครัว Change Font"}, -{"id": "font_size", "title": "เปลี่ยนขนาดตัวอักษร"}, -{"id": "group_opacity", "title": "เปลี่ยนความทึบเลือกรายการ"}, +{"id": "tool_font_size", "title": "เปลี่ยนขนาดตัวอักษร"}, +{"id": "tool_opacity", "title": "เปลี่ยนความทึบเลือกรายการ"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "คลิกเพื่อเปลี่ยนใส่สีกะคลิกเปลี่ยนสีจังหวะ"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "ความสูงสี่เหลี่ยมผืนผ้าเปลี่ยน"}, -{"id": "rect_rx", "title": "รัศมีเปลี่ยนสี่เหลี่ยมผืนผ้า Corner"}, -{"id": "rect_width", "title": "ความกว้างสี่เหลี่ยมผืนผ้าเปลี่ยน"}, +{"id": "rect_height_tool", "title": "ความสูงสี่เหลี่ยมผืนผ้าเปลี่ยน"}, +{"id": "cornerRadiusLabel", "title": "รัศมีเปลี่ยนสี่เหลี่ยมผืนผ้า Corner"}, +{"id": "rect_width_tool", "title": "ความกว้างสี่เหลี่ยมผืนผ้าเปลี่ยน"}, {"id": "relativeToLabel", "textContent": "เทียบกับ:"}, {"id": "rheightLabel", "textContent": "ความสูง:"}, {"id": "rwidthLabel", "textContent": "ความกว้าง:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "องค์ประกอบ Ungroup"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "เครื่องมือซูม"}, -{"id": "zoom", "title": "เปลี่ยนระดับการซูม"}, +{"id": "zoom_panel", "title": "เปลี่ยนระดับการซูม"}, {"id": "zoomLabel", "textContent": "ซูม:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.tl.js b/public/svg-edit/editor/locale/lang.tl.js index 5f33a1e4..0b6750c5 100644 --- a/public/svg-edit/editor/locale/lang.tl.js +++ b/public/svg-edit/editor/locale/lang.tl.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Pantayin sa kamag-anak sa ..."}, -{"id": "angle", "title": "Baguhin ang pag-ikot anggulo"}, +{"id": "tool_angle", "title": "Baguhin ang pag-ikot anggulo"}, {"id": "angleLabel", "textContent": "anggulo:"}, {"id": "bkgnd_color", "title": "Baguhin ang kulay ng background / kalabuan"}, {"id": "circle_cx", "title": "Cx Baguhin ang bilog's coordinate"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Pagkasyahin sa layer nilalaman"}, {"id": "fit_to_sel", "textContent": "Pagkasyahin sa pagpili"}, {"id": "font_family", "title": "Baguhin ang Pamilya ng Font"}, -{"id": "font_size", "title": "Baguhin ang Laki ng Font"}, -{"id": "group_opacity", "title": "Palitan ang mga napiling bagay kalabuan"}, +{"id": "tool_font_size", "title": "Baguhin ang Laki ng Font"}, +{"id": "tool_opacity", "title": "Palitan ang mga napiling bagay kalabuan"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "I-click upang baguhin ang punan ang kulay, paglilipat-click upang baguhin ang paghampas ng kulay"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Baguhin ang rektanggulo taas"}, -{"id": "rect_rx", "title": "Baguhin ang Parihaba Corner Radius"}, -{"id": "rect_width", "title": "Baguhin ang rektanggulo lapad"}, +{"id": "rect_height_tool", "title": "Baguhin ang rektanggulo taas"}, +{"id": "cornerRadiusLabel", "title": "Baguhin ang Parihaba Corner Radius"}, +{"id": "rect_width_tool", "title": "Baguhin ang rektanggulo lapad"}, {"id": "relativeToLabel", "textContent": "kamag-anak sa:"}, {"id": "rheightLabel", "textContent": "taas:"}, {"id": "rwidthLabel", "textContent": "width:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Sangkap"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Mag-zoom Kasangkapan"}, -{"id": "zoom", "title": "Baguhin ang antas ng zoom"}, +{"id": "zoom_panel", "title": "Baguhin ang antas ng zoom"}, {"id": "zoomLabel", "textContent": "mag-zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.tr.js b/public/svg-edit/editor/locale/lang.tr.js index dbb97f5a..fcc105ca 100644 --- a/public/svg-edit/editor/locale/lang.tr.js +++ b/public/svg-edit/editor/locale/lang.tr.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Align göre ..."}, -{"id": "angle", "title": "Değiştirmek dönme açısı"}, +{"id": "tool_angle", "title": "Değiştirmek dönme açısı"}, {"id": "angleLabel", "textContent": "açı:"}, {"id": "bkgnd_color", "title": "Arka plan rengini değiştirmek / opacity"}, {"id": "circle_cx", "title": "Değiştirmek daire's cx koordine"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Sığacak şekilde katman içerik"}, {"id": "fit_to_sel", "textContent": "Fit seçimine"}, {"id": "font_family", "title": "Font değiştir Aile"}, -{"id": "font_size", "title": "Change font size"}, -{"id": "group_opacity", "title": "Değiştirmek öğe opacity seçilmiş"}, +{"id": "tool_font_size", "title": "Change font size"}, +{"id": "tool_opacity", "title": "Değiştirmek öğe opacity seçilmiş"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Tıklatın renk, vardiya dolgu zamanlı rengini değiştirmek için tıklayın değiştirmek için"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Değiştirmek dikdörtgen yüksekliği"}, -{"id": "rect_rx", "title": "Değiştirmek Dikdörtgen Köşe Yarıçap"}, -{"id": "rect_width", "title": "Değiştirmek dikdörtgen genişliği"}, +{"id": "rect_height_tool", "title": "Değiştirmek dikdörtgen yüksekliği"}, +{"id": "cornerRadiusLabel", "title": "Değiştirmek Dikdörtgen Köşe Yarıçap"}, +{"id": "rect_width_tool", "title": "Değiştirmek dikdörtgen genişliği"}, {"id": "relativeToLabel", "textContent": "göreli:"}, {"id": "rheightLabel", "textContent": "yükseklik:"}, {"id": "rwidthLabel", "textContent": "genişliği:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Çöz Elemanları"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Yakınlaştırma düzeyini değiştirebilirsiniz"}, +{"id": "zoom_panel", "title": "Yakınlaştırma düzeyini değiştirebilirsiniz"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.uk.js b/public/svg-edit/editor/locale/lang.uk.js index d1458921..03511659 100644 --- a/public/svg-edit/editor/locale/lang.uk.js +++ b/public/svg-edit/editor/locale/lang.uk.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Вирівняти по відношенню до ..."}, -{"id": "angle", "title": "Зміна кута повороту"}, +{"id": "tool_angle", "title": "Зміна кута повороту"}, {"id": "angleLabel", "textContent": "Кут:"}, {"id": "bkgnd_color", "title": "Зміна кольору тла / непрозорість"}, {"id": "circle_cx", "title": "CX зміну кола координата"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "За розміром шар змісту"}, {"id": "fit_to_sel", "textContent": "Вибір розміру"}, {"id": "font_family", "title": "Зміни Сімейство шрифтів"}, -{"id": "font_size", "title": "Змінити розмір шрифту"}, -{"id": "group_opacity", "title": "Зміна вибраного пункту непрозорості"}, +{"id": "tool_font_size", "title": "Змінити розмір шрифту"}, +{"id": "tool_opacity", "title": "Зміна вибраного пункту непрозорості"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Натисніть для зміни кольору заливки, Shift-Click змінити обвід"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Зміни прямокутник висотою"}, -{"id": "rect_rx", "title": "Зміни прямокутник Corner Radius"}, -{"id": "rect_width", "title": "Зміна ширини прямокутника"}, +{"id": "rect_height_tool", "title": "Зміни прямокутник висотою"}, +{"id": "cornerRadiusLabel", "title": "Зміни прямокутник Corner Radius"}, +{"id": "rect_width_tool", "title": "Зміна ширини прямокутника"}, {"id": "relativeToLabel", "textContent": "в порівнянні з:"}, {"id": "rheightLabel", "textContent": "Висота:"}, {"id": "rwidthLabel", "textContent": "Ширина:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Елементи розгрупувати"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Зміна масштабу"}, +{"id": "zoom_panel", "title": "Зміна масштабу"}, {"id": "zoomLabel", "textContent": "Збільшити:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.vi.js b/public/svg-edit/editor/locale/lang.vi.js index c6c12ac9..a8f87c74 100644 --- a/public/svg-edit/editor/locale/lang.vi.js +++ b/public/svg-edit/editor/locale/lang.vi.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "Căn liên quan đến ..."}, -{"id": "angle", "title": "Thay đổi góc xoay"}, +{"id": "tool_angle", "title": "Thay đổi góc xoay"}, {"id": "angleLabel", "textContent": "góc:"}, {"id": "bkgnd_color", "title": "Thay đổi màu nền / opacity"}, {"id": "circle_cx", "title": "Thay đổi hình tròn của cx phối hợp"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "Vào lớp phù hợp với nội dung"}, {"id": "fit_to_sel", "textContent": "Phù hợp để lựa chọn"}, {"id": "font_family", "title": "Thay đổi Font Gia đình"}, -{"id": "font_size", "title": "Thay đổi cỡ chữ"}, -{"id": "group_opacity", "title": "Thay đổi lựa chọn opacity mục"}, +{"id": "tool_font_size", "title": "Thay đổi cỡ chữ"}, +{"id": "tool_opacity", "title": "Thay đổi lựa chọn opacity mục"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "Nhấn vào đây để thay đổi đầy màu sắc, thay đổi nhấp chuột để thay đổi màu sắc đột quỵ"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "Thay đổi hình chữ nhật chiều cao"}, -{"id": "rect_rx", "title": "Thay đổi chữ nhật Corner Radius"}, -{"id": "rect_width", "title": "Thay đổi hình chữ nhật chiều rộng"}, +{"id": "rect_height_tool", "title": "Thay đổi hình chữ nhật chiều cao"}, +{"id": "cornerRadiusLabel", "title": "Thay đổi chữ nhật Corner Radius"}, +{"id": "rect_width_tool", "title": "Thay đổi hình chữ nhật chiều rộng"}, {"id": "relativeToLabel", "textContent": "liên quan đến:"}, {"id": "rheightLabel", "textContent": "Chiều cao:"}, {"id": "rwidthLabel", "textContent": "Chiều rộng:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "Zoom Tool"}, -{"id": "zoom", "title": "Thay đổi mức độ phóng"}, +{"id": "zoom_panel", "title": "Thay đổi mức độ phóng"}, {"id": "zoomLabel", "textContent": "zoom:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.yi.js b/public/svg-edit/editor/locale/lang.yi.js index c7de5936..4a59dd7c 100644 --- a/public/svg-edit/editor/locale/lang.yi.js +++ b/public/svg-edit/editor/locale/lang.yi.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "יינרייען קאָרעוו צו ..."}, -{"id": "angle", "title": "ענדערן ראָוטיישאַן ווינקל"}, +{"id": "tool_angle", "title": "ענדערן ראָוטיישאַן ווינקל"}, {"id": "angleLabel", "textContent": "ווינקל:"}, {"id": "bkgnd_color", "title": "ענדערן הינטערגרונט פאַרב / אָופּאַסאַטי"}, {"id": "circle_cx", "title": "ענדערן קרייז ס קקס קאָואָרדאַנאַט"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "פּאַסיק צו שיכטע אינהאַלט"}, {"id": "fit_to_sel", "textContent": "פּאַסיק צו אָפּקלייב"}, {"id": "font_family", "title": "ענדערן פאָנט פאַמילי"}, -{"id": "font_size", "title": "בייטן פאָנט גרייס"}, -{"id": "group_opacity", "title": "ענדערן סעלעקטעד נומער אָופּאַסאַטי"}, +{"id": "tool_font_size", "title": "בייטן פאָנט גרייס"}, +{"id": "tool_opacity", "title": "ענדערן סעלעקטעד נומער אָופּאַסאַטי"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "גיט צו ענדערן אָנעסן קאָליר, יבעררוק-גיט צו טוישן מאַך קאָליר"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "ענדערן גראָדעק הייך"}, -{"id": "rect_rx", "title": "ענדערן רעקטאַנגלע קאָרנער ראַדיוס"}, -{"id": "rect_width", "title": "ענדערן גראָדעק ברייט"}, +{"id": "rect_height_tool", "title": "ענדערן גראָדעק הייך"}, +{"id": "cornerRadiusLabel", "title": "ענדערן רעקטאַנגלע קאָרנער ראַדיוס"}, +{"id": "rect_width_tool", "title": "ענדערן גראָדעק ברייט"}, {"id": "relativeToLabel", "textContent": "קאָרעוו צו:"}, {"id": "rheightLabel", "textContent": "הייך:"}, {"id": "rwidthLabel", "textContent": "ברייט:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "ונגראָופּ עלעמענץ"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "פארגרעסער טול"}, -{"id": "zoom", "title": "ענדערן פארגרעסער הייך"}, +{"id": "zoom_panel", "title": "ענדערן פארגרעסער הייך"}, {"id": "zoomLabel", "textContent": "פארגרעסער:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.zh-CN.js b/public/svg-edit/editor/locale/lang.zh-CN.js index 98f0d8ba..d8554946 100644 --- a/public/svg-edit/editor/locale/lang.zh-CN.js +++ b/public/svg-edit/editor/locale/lang.zh-CN.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "相对对齐 ..."}, -{"id": "angle", "title": "旋转角度的变化"}, +{"id": "tool_angle", "title": "旋转角度的变化"}, {"id": "angleLabel", "textContent": "角:"}, {"id": "bkgnd_color", "title": "更改背景颜色/不透明"}, {"id": "circle_cx", "title": "改变循环的CX坐标"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "适合层内容"}, {"id": "fit_to_sel", "textContent": "适合选择"}, {"id": "font_family", "title": "更改字体家族"}, -{"id": "font_size", "title": "更改字体大小"}, -{"id": "group_opacity", "title": "更改所选项目不透明"}, +{"id": "tool_font_size", "title": "更改字体大小"}, +{"id": "tool_opacity", "title": "更改所选项目不透明"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "点击更改填充颜色,按住Shift键单击更改颜色中风"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "更改矩形的高度"}, -{"id": "rect_rx", "title": "矩形角半径的变化"}, -{"id": "rect_width", "title": "更改矩形的宽度"}, +{"id": "rect_height_tool", "title": "更改矩形的高度"}, +{"id": "cornerRadiusLabel", "title": "矩形角半径的变化"}, +{"id": "rect_width_tool", "title": "更改矩形的宽度"}, {"id": "relativeToLabel", "textContent": "相对于:"}, {"id": "rheightLabel", "textContent": "身高:"}, {"id": "rwidthLabel", "textContent": "宽度:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "取消组合元素"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "缩放工具"}, -{"id": "zoom", "title": "更改缩放级别"}, +{"id": "zoom_panel", "title": "更改缩放级别"}, {"id": "zoomLabel", "textContent": "变焦:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.zh-HK.js b/public/svg-edit/editor/locale/lang.zh-HK.js index fb344c6d..6732ee1d 100644 --- a/public/svg-edit/editor/locale/lang.zh-HK.js +++ b/public/svg-edit/editor/locale/lang.zh-HK.js @@ -1,6 +1,6 @@ [ {"id": "align_relative_to", "title": "相对对齐 ..."}, -{"id": "angle", "title": "旋转角度的变化"}, +{"id": "tool_angle", "title": "旋转角度的变化"}, {"id": "angleLabel", "textContent": "角:"}, {"id": "bkgnd_color", "title": "更改背景颜色/不透明"}, {"id": "circle_cx", "title": "改变循环的CX坐标"}, @@ -20,8 +20,8 @@ {"id": "fit_to_layer_content", "textContent": "适合层内容"}, {"id": "fit_to_sel", "textContent": "适合选择"}, {"id": "font_family", "title": "更改字体家族"}, -{"id": "font_size", "title": "更改字体大小"}, -{"id": "group_opacity", "title": "更改所选项目不透明"}, +{"id": "tool_font_size", "title": "更改字体大小"}, +{"id": "tool_opacity", "title": "更改所选项目不透明"}, {"id": "icon_large", "textContent": "Large"}, {"id": "icon_medium", "textContent": "Medium"}, {"id": "icon_small", "textContent": "Small"}, @@ -49,9 +49,9 @@ {"id": "palette", "title": "点击更改填充颜色,按住Shift键单击更改颜色中风"}, {"id": "path_node_x", "title": "Change node's x coordinate"}, {"id": "path_node_y", "title": "Change node's y coordinate"}, -{"id": "rect_height", "title": "更改矩形的高度"}, -{"id": "rect_rx", "title": "矩形角半径的变化"}, -{"id": "rect_width", "title": "更改矩形的宽度"}, +{"id": "rect_height_tool", "title": "更改矩形的高度"}, +{"id": "cornerRadiusLabel", "title": "矩形角半径的变化"}, +{"id": "rect_width_tool", "title": "更改矩形的宽度"}, {"id": "relativeToLabel", "textContent": "相对于:"}, {"id": "rheightLabel", "textContent": "身高:"}, {"id": "rwidthLabel", "textContent": "宽度:"}, @@ -125,7 +125,7 @@ {"id": "tool_ungroup", "title": "Ungroup Elements"}, {"id": "tool_wireframe", "title": "Wireframe Mode"}, {"id": "tool_zoom", "title": "缩放工具"}, -{"id": "zoom", "title": "更改缩放级别"}, +{"id": "zoom_panel", "title": "更改缩放级别"}, {"id": "zoomLabel", "textContent": "变焦:"}, {"id": "sidepanel_handle", "textContent": "L a y e r s", "title": "Drag left/right to resize side panel"}, { diff --git a/public/svg-edit/editor/locale/lang.zh-TW.js b/public/svg-edit/editor/locale/lang.zh-TW.js index 209d1d4f..f7682123 100644 --- a/public/svg-edit/editor/locale/lang.zh-TW.js +++ b/public/svg-edit/editor/locale/lang.zh-TW.js @@ -1,156 +1,156 @@ [ -{"id":"align_relative_to","title":"相對對齊 ..."}, -{"id":"angle","title":"旋轉角度"}, -{"id":"angleLabel","textContent":"角度:"}, -{"id":"bkgnd_color","title":"更改背景顏色/不透明"}, -{"id":"circle_cx","title":"改變圓的CX坐標"}, -{"id":"circle_cy","title":"改變圓的CY坐標"}, -{"id":"circle_r","title":"改變圓的半徑"}, -{"id":"cornerRadiusLabel","textContent":"角半徑:"}, -{"id":"curve_segments","textContent":"曲線"}, -{"id":"ellipse_cx","title":"改變橢圓的圓心x軸座標"}, -{"id":"ellipse_cy","title":"改變橢圓的圓心y軸座標"}, -{"id":"ellipse_rx","title":"改變橢圓的x軸長"}, -{"id":"ellipse_ry","title":"改變橢圓的y軸長"}, -{"id":"fill_color","title":"更改填充顏色"}, -{"id":"fill_tool_bottom","textContent":"填充:"}, -{"id":"fitToContent","textContent":"適合內容"}, -{"id":"fit_to_all","textContent":"適合所有的內容"}, -{"id":"fit_to_canvas","textContent":"適合畫布"}, -{"id":"fit_to_layer_content","textContent":"適合圖層內容"}, -{"id":"fit_to_sel","textContent":"適合選取的物件"}, -{"id":"font_family","title":"更改字體"}, -{"id":"font_size","title":"更改字體大小"}, -{"id":"group_opacity","title":"更改所選項目不透明度"}, -{"id":"icon_large","textContent":"大"}, -{"id":"icon_medium","textContent":"中"}, -{"id":"icon_small","textContent":"小"}, -{"id":"icon_xlarge","textContent":"特大"}, -{"id":"iheightLabel","textContent":"高度:"}, -{"id":"image_height","title":"更改圖像高度"}, -{"id":"image_opt_embed","textContent":"內嵌資料 (本地端檔案)"}, -{"id":"image_opt_ref","textContent":"使用檔案參照"}, -{"id":"image_url","title":"更改網址"}, -{"id":"image_width","title":"更改圖像的寬度"}, -{"id":"includedImages","textContent":"包含圖像"}, -{"id":"iwidthLabel","textContent":"寬度:"}, -{"id":"largest_object","textContent":"最大的物件"}, -{"id":"layer_delete","title":"刪除圖層"}, -{"id":"layer_down","title":"向下移動圖層"}, -{"id":"layer_new","title":"新增圖層"}, -{"id":"layer_rename","title":"重新命名圖層"}, -{"id":"layer_up","title":"向上移動圖層"}, -{"id":"layersLabel","textContent":"圖層:"}, -{"id":"line_x1","title":"更改行的起點的x坐標"}, -{"id":"line_x2","title":"更改行的終點x坐標"}, -{"id":"line_y1","title":"更改行的起點的y坐標"}, -{"id":"line_y2","title":"更改行的終點y坐標"}, -{"id":"page","textContent":"網頁"}, -{"id":"palette","title":"點擊更改填充顏色,按住Shift鍵單擊更改線條顏色"}, -{"id":"path_node_x","title":"改變節點的x軸座標"}, -{"id":"path_node_y","title":"改變節點的y軸座標"}, -{"id":"rect_height","title":"更改矩形的高度"}, -{"id":"rect_rx","title":"矩形角半徑的變化"}, -{"id":"rect_width","title":"更改矩形的寬度"}, -{"id":"relativeToLabel","textContent":"相對於:"}, -{"id":"rheightLabel","textContent":"高度:"}, -{"id":"rwidthLabel","textContent":"寬度:"}, -{"id":"seg_type","title":"Change Segment type"}, -{"id":"selLayerLabel","textContent":"移動物件到:"}, -{"id":"selLayerNames","title":"移動被點選的物件其他圖層"}, -{"id":"selectedPredefined","textContent":"使用預設值:"}, -{"id":"selected_objects","textContent":"選取物件"}, -{"id":"selected_x","title":"調整 X 軸"}, -{"id":"selected_y","title":"調整 Y 軸"}, -{"id":"smallest_object","textContent":"最小的物件"}, -{"id":"straight_segments","textContent":"直線"}, -{"id":"stroke_color","title":"線條顏色"}, -{"id":"stroke_style","title":"更改線條(虛線)風格"}, -{"id":"stroke_tool_bottom","textContent":"線條:"}, -{"id":"stroke_width","title":"線條寬度"}, -{"id":"svginfo_bg_note","textContent":"注意: 編輯器背景不會和圖像一起儲存"}, -{"id":"svginfo_change_background","textContent":"編輯器背景"}, -{"id":"svginfo_dim","textContent":"畫布大小"}, -{"id":"svginfo_editor_prefs","textContent":"編輯器屬性"}, -{"id":"svginfo_height","textContent":"高度:"}, -{"id":"svginfo_icons","textContent":"圖示大小"}, -{"id":"svginfo_image_props","textContent":"圖片屬性"}, -{"id":"svginfo_lang","textContent":"語言"}, -{"id":"svginfo_title","textContent":"標題"}, -{"id":"svginfo_width","textContent":"寬度:"}, -{"id":"text","title":"更改文字內容"}, -{"id":"tool_alignbottom","title":"底部對齊"}, -{"id":"tool_aligncenter","title":"居中對齊"}, -{"id":"tool_alignleft","title":"向左對齊"}, -{"id":"tool_alignmiddle","title":"中間對齊"}, -{"id":"tool_alignright","title":"向右對齊"}, -{"id":"tool_aligntop","title":"頂端對齊"}, -{"id":"tool_bold","title":"粗體"}, -{"id":"tool_circle","title":"圓"}, -{"id":"tool_clear","textContent":"清空圖像"}, -{"id":"tool_clone","title":"複製"}, -{"id":"tool_clone_multi","title":"複製所選元素"}, -{"id":"tool_delete","title":"刪除"}, -{"id":"tool_delete_multi","title":"刪除所選元素"}, -{"id":"tool_docprops","textContent":"文件屬性"}, -{"id":"tool_docprops_cancel","textContent":"取消"}, -{"id":"tool_docprops_save","textContent":"保存"}, -{"id":"tool_ellipse","title":"橢圓"}, -{"id":"tool_fhellipse","title":"徒手畫橢圓"}, -{"id":"tool_fhpath","title":"鉛筆工具"}, -{"id":"tool_fhrect","title":"徒手畫矩形"}, -{"id":"tool_group","title":"群組"}, -{"id":"tool_image","title":"圖像工具"}, -{"id":"tool_italic","title":"斜體"}, -{"id":"tool_line","title":"線工具"}, -{"id":"tool_move_bottom","title":"移至底部"}, -{"id":"tool_move_top","title":"移動到頂部"}, -{"id":"tool_node_clone","title":"增加節點"}, -{"id":"tool_node_delete","title":"刪除節點"}, -{"id":"tool_node_link","title":"將控制點連起來"}, -{"id":"tool_open","textContent":"打開圖像"}, -{"id":"tool_path","title":"路徑工具"}, -{"id":"tool_rect","title":"矩形"}, -{"id":"tool_redo","title":"復原"}, -{"id":"tool_reorient","title":"調整路徑"}, -{"id":"tool_save","textContent":"保存圖像"}, -{"id":"tool_select","title":"選擇工具"}, -{"id":"tool_source","title":"編輯SVG原始碼"}, -{"id":"tool_source_cancel","textContent":"取消"}, -{"id":"tool_source_save","textContent":"保存"}, -{"id":"tool_square","title":"方形"}, -{"id":"tool_text","title":"文字工具"}, -{"id":"tool_topath","title":"轉換成路徑"}, -{"id":"tool_undo","title":"取消復原"}, -{"id":"tool_ungroup","title":"取消群組"}, -{"id":"tool_wireframe","title":"框線模式(只瀏覽線條)"}, -{"id":"tool_zoom","title":"縮放工具"}, -{"id":"zoom","title":"更改縮放級別"}, -{"id":"zoomLabel","textContent":"調整頁面大小:"}, -{"id":"sidepanel_handle","textContent":"圖層","title":"拖拉以改變側邊面板的大小"}, +{"id": "align_relative_to", "title": "相對對齊 ..."}, +{"id": "tool_angle", "title": "旋轉角度"}, +{"id": "angleLabel", "textContent": "角度:"}, +{"id": "bkgnd_color", "title": "更改背景顏色/不透明"}, +{"id": "circle_cx", "title": "改變圓的CX坐標"}, +{"id": "circle_cy", "title": "改變圓的CY坐標"}, +{"id": "circle_r", "title": "改變圓的半徑"}, +{"id": "cornerRadiusLabel", "textContent": "角半徑:"}, +{"id": "curve_segments", "textContent": "曲線"}, +{"id": "ellipse_cx", "title": "改變橢圓的圓心x軸座標"}, +{"id": "ellipse_cy", "title": "改變橢圓的圓心y軸座標"}, +{"id": "ellipse_rx", "title": "改變橢圓的x軸長"}, +{"id": "ellipse_ry", "title": "改變橢圓的y軸長"}, +{"id": "fill_color", "title": "更改填充顏色"}, +{"id": "fill_tool_bottom", "textContent": "填充:"}, +{"id": "fitToContent", "textContent": "適合內容"}, +{"id": "fit_to_all", "textContent": "適合所有的內容"}, +{"id": "fit_to_canvas", "textContent": "適合畫布"}, +{"id": "fit_to_layer_content", "textContent": "適合圖層內容"}, +{"id": "fit_to_sel", "textContent": "適合選取的物件"}, +{"id": "font_family", "title": "更改字體"}, +{"id": "tool_font_size", "title": "更改字體大小"}, +{"id": "tool_opacity", "title": "更改所選項目不透明度"}, +{"id": "icon_large", "textContent": "大"}, +{"id": "icon_medium", "textContent": "中"}, +{"id": "icon_small", "textContent": "小"}, +{"id": "icon_xlarge", "textContent": "特大"}, +{"id": "iheightLabel", "textContent": "高度:"}, +{"id": "image_height", "title": "更改圖像高度"}, +{"id": "image_opt_embed", "textContent": "內嵌資料 (本地端檔案)"}, +{"id": "image_opt_ref", "textContent": "使用檔案參照"}, +{"id": "image_url", "title": "更改網址"}, +{"id": "image_width", "title": "更改圖像的寬度"}, +{"id": "includedImages", "textContent": "包含圖像"}, +{"id": "iwidthLabel", "textContent": "寬度:"}, +{"id": "largest_object", "textContent": "最大的物件"}, +{"id": "layer_delete", "title": "刪除圖層"}, +{"id": "layer_down", "title": "向下移動圖層"}, +{"id": "layer_new", "title": "新增圖層"}, +{"id": "layer_rename", "title": "重新命名圖層"}, +{"id": "layer_up", "title": "向上移動圖層"}, +{"id": "layersLabel", "textContent": "圖層:"}, +{"id": "line_x1", "title": "更改行的起點的x坐標"}, +{"id": "line_x2", "title": "更改行的終點x坐標"}, +{"id": "line_y1", "title": "更改行的起點的y坐標"}, +{"id": "line_y2", "title": "更改行的終點y坐標"}, +{"id": "page", "textContent": "網頁"}, +{"id": "palette", "title": "點擊更改填充顏色,按住Shift鍵單擊更改線條顏色"}, +{"id": "path_node_x", "title": "改變節點的x軸座標"}, +{"id": "path_node_y", "title": "改變節點的y軸座標"}, +{"id": "rect_height_tool", "title": "更改矩形的高度"}, +{"id": "cornerRadiusLabel", "title": "矩形角半徑的變化"}, +{"id": "rect_width_tool", "title": "更改矩形的寬度"}, +{"id": "relativeToLabel", "textContent": "相對於:"}, +{"id": "rheightLabel", "textContent": "高度:"}, +{"id": "rwidthLabel", "textContent": "寬度:"}, +{"id": "seg_type", "title": "Change Segment type"}, +{"id": "selLayerLabel", "textContent": "移動物件到:"}, +{"id": "selLayerNames", "title": "移動被點選的物件其他圖層"}, +{"id": "selectedPredefined", "textContent": "使用預設值:"}, +{"id": "selected_objects", "textContent": "選取物件"}, +{"id": "selected_x", "title": "調整 X 軸"}, +{"id": "selected_y", "title": "調整 Y 軸"}, +{"id": "smallest_object", "textContent": "最小的物件"}, +{"id": "straight_segments", "textContent": "直線"}, +{"id": "stroke_color", "title": "線條顏色"}, +{"id": "stroke_style", "title": "更改線條(虛線)風格"}, +{"id": "stroke_tool_bottom", "textContent": "線條:"}, +{"id": "stroke_width", "title": "線條寬度"}, +{"id": "svginfo_bg_note", "textContent": "注意: 編輯器背景不會和圖像一起儲存"}, +{"id": "svginfo_change_background", "textContent": "編輯器背景"}, +{"id": "svginfo_dim", "textContent": "畫布大小"}, +{"id": "svginfo_editor_prefs", "textContent": "編輯器屬性"}, +{"id": "svginfo_height", "textContent": "高度:"}, +{"id": "svginfo_icons", "textContent": "圖示大小"}, +{"id": "svginfo_image_props", "textContent": "圖片屬性"}, +{"id": "svginfo_lang", "textContent": "語言"}, +{"id": "svginfo_title", "textContent": "標題"}, +{"id": "svginfo_width", "textContent": "寬度:"}, +{"id": "text", "title": "更改文字內容"}, +{"id": "tool_alignbottom", "title": "底部對齊"}, +{"id": "tool_aligncenter", "title": "居中對齊"}, +{"id": "tool_alignleft", "title": "向左對齊"}, +{"id": "tool_alignmiddle", "title": "中間對齊"}, +{"id": "tool_alignright", "title": "向右對齊"}, +{"id": "tool_aligntop", "title": "頂端對齊"}, +{"id": "tool_bold", "title": "粗體"}, +{"id": "tool_circle", "title": "圓"}, +{"id": "tool_clear", "textContent": "清空圖像"}, +{"id": "tool_clone", "title": "複製"}, +{"id": "tool_clone_multi", "title": "複製所選元素"}, +{"id": "tool_delete", "title": "刪除"}, +{"id": "tool_delete_multi", "title": "刪除所選元素"}, +{"id": "tool_docprops", "textContent": "文件屬性"}, +{"id": "tool_docprops_cancel", "textContent": "取消"}, +{"id": "tool_docprops_save", "textContent": "保存"}, +{"id": "tool_ellipse", "title": "橢圓"}, +{"id": "tool_fhellipse", "title": "徒手畫橢圓"}, +{"id": "tool_fhpath", "title": "鉛筆工具"}, +{"id": "tool_fhrect", "title": "徒手畫矩形"}, +{"id": "tool_group", "title": "群組"}, +{"id": "tool_image", "title": "圖像工具"}, +{"id": "tool_italic", "title": "斜體"}, +{"id": "tool_line", "title": "線工具"}, +{"id": "tool_move_bottom", "title": "移至底部"}, +{"id": "tool_move_top", "title": "移動到頂部"}, +{"id": "tool_node_clone", "title": "增加節點"}, +{"id": "tool_node_delete", "title": "刪除節點"}, +{"id": "tool_node_link", "title": "將控制點連起來"}, +{"id": "tool_open", "textContent": "打開圖像"}, +{"id": "tool_path", "title": "路徑工具"}, +{"id": "tool_rect", "title": "矩形"}, +{"id": "tool_redo", "title": "復原"}, +{"id": "tool_reorient", "title": "調整路徑"}, +{"id": "tool_save", "textContent": "保存圖像"}, +{"id": "tool_select", "title": "選擇工具"}, +{"id": "tool_source", "title": "編輯SVG原始碼"}, +{"id": "tool_source_cancel", "textContent": "取消"}, +{"id": "tool_source_save", "textContent": "保存"}, +{"id": "tool_square", "title": "方形"}, +{"id": "tool_text", "title": "文字工具"}, +{"id": "tool_topath", "title": "轉換成路徑"}, +{"id": "tool_undo", "title": "取消復原"}, +{"id": "tool_ungroup", "title": "取消群組"}, +{"id": "tool_wireframe", "title": "框線模式(只瀏覽線條)"}, +{"id": "tool_zoom", "title": "縮放工具"}, +{"id": "zoom_panel", "title": "更改縮放級別"}, +{"id": "zoomLabel", "textContent": "調整頁面大小:"}, +{"id": "sidepanel_handle", "textContent": "圖層", "title": "拖拉以改變側邊面板的大小"}, { "js_strings": { - "QerrorsRevertToSource":"SVG原始碼解析錯誤\n要回復到原本的SVG原始碼嗎?", - "QignoreSourceChanges":"要忽略對SVG原始碼的更動嗎?", - "QmoveElemsToLayer":"要搬移所選取的物件到'%s'層嗎?", - "QwantToClear":"要清空圖像嗎?\n這會順便清空你的回復紀錄!", - "cancel":"取消", - "dupeLayerName":"喔不!已經有另一個同樣名稱的圖層了!", - "enterNewImgURL":"輸入新的圖片網址", - "enterUniqueLayerName":"請輸入一個名稱不重複的", - "enterNewLayerName":"請輸入新圖層的名稱", - "featNotSupported":"未提供此功能", - "invalidAttrValGiven":"數值給定錯誤", - "key_backspace":"空白", - "key_del":"刪除", - "key_down":"下", - "key_up":"上", - "layer":"圖層", - "layerHasThatName":"圖層本來就是這個名稱(抱怨)", - "noContentToFitTo":"找不到符合的內容", - "ok":"確定", - "pathCtrlPtTooltip":"拖拉控制點以改變曲線性質", - "pathNodeTooltip":"拖拉節點以移動, 連擊節點以改變線段型態(直線/曲線)" + "QerrorsRevertToSource": "SVG原始碼解析錯誤\n要回復到原本的SVG原始碼嗎?", + "QignoreSourceChanges": "要忽略對SVG原始碼的更動嗎?", + "QmoveElemsToLayer": "要搬移所選取的物件到'%s'層嗎?", + "QwantToClear": "要清空圖像嗎?\n這會順便清空你的回復紀錄!", + "cancel": "取消", + "dupeLayerName": "喔不!已經有另一個同樣名稱的圖層了!", + "enterNewImgURL": "輸入新的圖片網址", + "enterNewLayerName": "請輸入新圖層的名稱", + "enterUniqueLayerName": "請輸入一個名稱不重複的", + "featNotSupported": "未提供此功能", + "invalidAttrValGiven": "數值給定錯誤", + "key_backspace": "空白", + "key_del": "刪除", + "key_down": "下", + "key_up": "上", + "layer": "圖層", + "layerHasThatName": "圖層本來就是這個名稱(抱怨)", + "noContentToFitTo": "找不到符合的內容", + "ok": "確定", + "pathCtrlPtTooltip": "拖拉控制點以改變曲線性質", + "pathNodeTooltip": "拖拉節點以移動, 連擊節點以改變線段型態(直線/曲線)" } } ] \ No newline at end of file diff --git a/public/svg-edit/editor/svg-editor.css b/public/svg-edit/editor/svg-editor.css index 8aea6d62..9eded7f3 100644 --- a/public/svg-edit/editor/svg-editor.css +++ b/public/svg-edit/editor/svg-editor.css @@ -78,6 +78,23 @@ margin-top: 0; } +#svg_editor #color_tools .icon_label { + padding-right: 0; + height: 26px; + min-width: 18px; + cursor: pointer; +} + +#group_opacityLabel, +#zoomLabel { + cursor: pointer; +} + +#color_tools .icon_label > * { + position: relative; + top: 1px; +} + #svg_editor div#palette { float: left; width: 6848px; @@ -475,8 +492,8 @@ span.zoom_tool { padding: 3px; } -#zoom_panel label { - margin-top: 2px; +#zoom_panel { + margin-top: 5px; } .dropdown { @@ -605,6 +622,10 @@ span.zoom_tool { float: left; padding-top: 3px; padding-right: 3px; + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + height: 0; } #svg_editor .width_label { @@ -690,7 +711,7 @@ span.zoom_tool { } #svg_editor #tools_bottom_2 { - width: 215px; + width: 180px; position: relative; float: left; } @@ -714,7 +735,7 @@ span.zoom_tool { background: #f0f0f0; padding: 0 5px; vertical-align: middle; - height: 26px; + height: 25px; } #toggle_stroke_tools { @@ -766,7 +787,7 @@ span.zoom_tool { } -#tools_top .dropdown div { +#tools_top .dropdown .icon_label { border: 1px solid transparent; margin-top: 3px; } @@ -829,7 +850,7 @@ span.zoom_tool { padding: 0 3px; } -#tool_opacity .dropdown button { +#tools_bottom .dropdown button { margin-top: 2px; } diff --git a/public/svg-edit/editor/svg-editor.html b/public/svg-edit/editor/svg-editor.html index 34043694..e500f87f 100644 --- a/public/svg-edit/editor/svg-editor.html +++ b/public/svg-edit/editor/svg-editor.html @@ -161,22 +161,22 @@ script type="text/javascript" src="locale/locale.min.js">
-