- Fix: Broken lv locale, inconsistent tabs/spaces pt-PR

- Linting: Add ESLint script and devDeps and begin ESLint conversion (completed locales and jspdf directories only)
master
Brett Zamir 2018-05-13 11:03:45 +08:00
parent ac6d5092e4
commit 820964334c
65 changed files with 3655 additions and 2046 deletions

3
.eslintignore Normal file
View File

@ -0,0 +1,3 @@
node_modules
editor/jspdf/jspdf.min.js
editor/jspdf/underscore-min.js

19
.eslintrc Normal file
View File

@ -0,0 +1,19 @@
{
"extends": "standard",
"parserOptions": {
"sourceType": "module"
},
"env": {
"node": false,
"browser": true
},
"rules": {
"semi": [2, "always"],
"indent": ["error", "tab", {"outerIIFEBody": 0}],
"no-tabs": 0,
"object-property-newline": 0,
"one-var": 0,
"no-var": 2,
"prefer-const": 2
}
}

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
node_modules
# See editor/config-sample.js for an example
editor/config.js
editor/custom.css

View File

@ -1,5 +1,5 @@
/*globals RGBColor, DOMParser, jsPDF*/
/*jslint eqeq:true, vars:true*/
/* globals RGBColor, DOMParser, jsPDF */
/* eslint-disable no-var */
/*
* svgToPdf.js
*
@ -21,207 +21,206 @@
*
*/
(function(jsPDFAPI, undef) {
(function (jsPDFAPI, undef) {
'use strict';
var pdfSvgAttr = {
// allowed attributes. all others are removed from the preview.
g: ['stroke', 'fill', 'stroke-width'],
line: ['x1', 'y1', 'x2', 'y2', 'stroke', 'stroke-width'],
rect: ['x', 'y', 'width', 'height', 'stroke', 'fill', 'stroke-width'],
ellipse: ['cx', 'cy', 'rx', 'ry', 'stroke', 'fill', 'stroke-width'],
circle: ['cx', 'cy', 'r', 'stroke', 'fill', 'stroke-width'],
text: ['x', 'y', 'font-size', 'font-family', 'text-anchor', 'font-weight', 'font-style', 'fill']
// allowed attributes. all others are removed from the preview.
g: ['stroke', 'fill', 'stroke-width'],
line: ['x1', 'y1', 'x2', 'y2', 'stroke', 'stroke-width'],
rect: ['x', 'y', 'width', 'height', 'stroke', 'fill', 'stroke-width'],
ellipse: ['cx', 'cy', 'rx', 'ry', 'stroke', 'fill', 'stroke-width'],
circle: ['cx', 'cy', 'r', 'stroke', 'fill', 'stroke-width'],
text: ['x', 'y', 'font-size', 'font-family', 'text-anchor', 'font-weight', 'font-style', 'fill']
};
var attributeIsNotEmpty = function (node, attr) {
var attVal = attr ? node.getAttribute(attr) : node;
return attVal !== '' && attVal !== null;
var attVal = attr ? node.getAttribute(attr) : node;
return attVal !== '' && attVal !== null;
};
var nodeIs = function (node, possible) {
return possible.indexOf(node.tagName.toLowerCase()) > -1;
return possible.indexOf(node.tagName.toLowerCase()) > -1;
};
var removeAttributes = function(node, attributes) {
var toRemove = [];
[].forEach.call(node.attributes, function(a) {
if (attributeIsNotEmpty(a) && attributes.indexOf(a.name.toLowerCase()) == -1) {
toRemove.push(a.name);
}
});
var removeAttributes = function (node, attributes) {
var toRemove = [];
[].forEach.call(node.attributes, function (a) {
if (attributeIsNotEmpty(a) && attributes.indexOf(a.name.toLowerCase()) === -1) {
toRemove.push(a.name);
}
});
toRemove.forEach(function(a) {
node.removeAttribute(a.name);
});
toRemove.forEach(function (a) {
node.removeAttribute(a.name);
});
};
var svgElementToPdf = function(element, pdf, options) {
// pdf is a jsPDF object
//console.log("options =", options);
var remove = (options.removeInvalid == undef ? false : options.removeInvalid);
var k = (options.scale == undef ? 1.0 : options.scale);
var colorMode = null;
[].forEach.call(element.children, function(node) {
//console.log("passing: ", node);
var hasFillColor = false;
var hasStrokeColor = false;
var fillRGB;
if(nodeIs(node, ['g', 'line', 'rect', 'ellipse', 'circle', 'text'])) {
var fillColor = node.getAttribute('fill');
if(attributeIsNotEmpty(fillColor)) {
fillRGB = new RGBColor(fillColor);
if(fillRGB.ok) {
hasFillColor = true;
colorMode = 'F';
} else {
colorMode = null;
}
}
}
if(nodeIs(node, ['g', 'line', 'rect', 'ellipse', 'circle'])) {
if(hasFillColor) {
pdf.setFillColor(fillRGB.r, fillRGB.g, fillRGB.b);
}
if(attributeIsNotEmpty(node, 'stroke-width')) {
pdf.setLineWidth(k * parseInt(node.getAttribute('stroke-width'), 10));
}
var strokeColor = node.getAttribute('stroke');
if(attributeIsNotEmpty(strokeColor)) {
var strokeRGB = new RGBColor(strokeColor);
if(strokeRGB.ok) {
hasStrokeColor = true;
pdf.setDrawColor(strokeRGB.r, strokeRGB.g, strokeRGB.b);
if(colorMode == 'F') {
colorMode = 'FD';
} else {
colorMode = null;
}
} else {
colorMode = null;
}
}
}
switch(node.tagName.toLowerCase()) {
case 'svg':
case 'a':
case 'g':
svgElementToPdf(node, pdf, options);
removeAttributes(node, pdfSvgAttr.g);
break;
case 'line':
pdf.line(
k*parseInt(node.getAttribute('x1'), 10),
k*parseInt(node.getAttribute('y1'), 10),
k*parseInt(node.getAttribute('x2'), 10),
k*parseInt(node.getAttribute('y2'), 10)
);
removeAttributes(node, pdfSvgAttr.line);
break;
case 'rect':
pdf.rect(
k*parseInt(node.getAttribute('x'), 10),
k*parseInt(node.getAttribute('y'), 10),
k*parseInt(node.getAttribute('width'), 10),
k*parseInt(node.getAttribute('height'), 10),
colorMode
);
removeAttributes(node, pdfSvgAttr.rect);
break;
case 'ellipse':
pdf.ellipse(
k*parseInt(node.getAttribute('cx'), 10),
k*parseInt(node.getAttribute('cy'), 10),
k*parseInt(node.getAttribute('rx'), 10),
k*parseInt(node.getAttribute('ry'), 10),
colorMode
);
removeAttributes(node, pdfSvgAttr.ellipse);
break;
case 'circle':
pdf.circle(
k*parseInt(node.getAttribute('cx'), 10),
k*parseInt(node.getAttribute('cy'), 10),
k*parseInt(node.getAttribute('r'), 10),
colorMode
);
removeAttributes(node, pdfSvgAttr.circle);
break;
case 'text':
if(node.hasAttribute('font-family')) {
switch((node.getAttribute('font-family') || '').toLowerCase()) {
case 'serif': pdf.setFont('times'); break;
case 'monospace': pdf.setFont('courier'); break;
default:
node.setAttribute('font-family', 'sans-serif');
pdf.setFont('helvetica');
}
}
if(hasFillColor) {
pdf.setTextColor(fillRGB.r, fillRGB.g, fillRGB.b);
}
var fontType = "";
if(node.hasAttribute('font-weight')) {
if(node.getAttribute('font-weight') == "bold") {
fontType = "bold";
} else {
node.removeAttribute('font-weight');
}
}
if(node.hasAttribute('font-style')) {
if(node.getAttribute('font-style') == "italic") {
fontType += "italic";
} else {
node.removeAttribute('font-style');
}
}
pdf.setFontType(fontType);
var pdfFontSize = 16;
if(node.hasAttribute('font-size')) {
pdfFontSize = parseInt(node.getAttribute('font-size'), 10);
}
var box = node.getBBox();
//FIXME: use more accurate positioning!!
var x, y, xOffset = 0;
if(node.hasAttribute('text-anchor')) {
switch(node.getAttribute('text-anchor')) {
case 'end': xOffset = box.width; break;
case 'middle': xOffset = box.width / 2; break;
case 'start': break;
case 'default': node.setAttribute('text-anchor', 'start'); break;
}
x = parseInt(node.getAttribute('x'), 10) - xOffset;
y = parseInt(node.getAttribute('y'), 10);
}
//console.log("fontSize:", pdfFontSize, "text:", node.textContent);
pdf.setFontSize(pdfFontSize).text(
k * x,
k * y,
node.textContent
);
removeAttributes(node, pdfSvgAttr.text);
break;
//TODO: image
default:
if (remove) {
console.log("can't translate to pdf:", node);
node.parentNode.removeChild(node);
}
}
});
return pdf;
var svgElementToPdf = function (element, pdf, options) {
// pdf is a jsPDF object
// console.log("options =", options);
var remove = (options.removeInvalid === undef ? false : options.removeInvalid);
var k = (options.scale === undef ? 1.0 : options.scale);
var colorMode = null;
[].forEach.call(element.children, function (node) {
// console.log("passing: ", node);
var hasFillColor = false;
// var hasStrokeColor = false;
var fillRGB;
if (nodeIs(node, ['g', 'line', 'rect', 'ellipse', 'circle', 'text'])) {
var fillColor = node.getAttribute('fill');
if (attributeIsNotEmpty(fillColor)) {
fillRGB = new RGBColor(fillColor);
if (fillRGB.ok) {
hasFillColor = true;
colorMode = 'F';
} else {
colorMode = null;
}
}
}
if (nodeIs(node, ['g', 'line', 'rect', 'ellipse', 'circle'])) {
if (hasFillColor) {
pdf.setFillColor(fillRGB.r, fillRGB.g, fillRGB.b);
}
if (attributeIsNotEmpty(node, 'stroke-width')) {
pdf.setLineWidth(k * parseInt(node.getAttribute('stroke-width'), 10));
}
var strokeColor = node.getAttribute('stroke');
if (attributeIsNotEmpty(strokeColor)) {
var strokeRGB = new RGBColor(strokeColor);
if (strokeRGB.ok) {
// hasStrokeColor = true;
pdf.setDrawColor(strokeRGB.r, strokeRGB.g, strokeRGB.b);
if (colorMode === 'F') {
colorMode = 'FD';
} else {
colorMode = null;
}
} else {
colorMode = null;
}
}
}
switch (node.tagName.toLowerCase()) {
case 'svg':
case 'a':
case 'g':
svgElementToPdf(node, pdf, options);
removeAttributes(node, pdfSvgAttr.g);
break;
case 'line':
pdf.line(
k * parseInt(node.getAttribute('x1'), 10),
k * parseInt(node.getAttribute('y1'), 10),
k * parseInt(node.getAttribute('x2'), 10),
k * parseInt(node.getAttribute('y2'), 10)
);
removeAttributes(node, pdfSvgAttr.line);
break;
case 'rect':
pdf.rect(
k * parseInt(node.getAttribute('x'), 10),
k * parseInt(node.getAttribute('y'), 10),
k * parseInt(node.getAttribute('width'), 10),
k * parseInt(node.getAttribute('height'), 10),
colorMode
);
removeAttributes(node, pdfSvgAttr.rect);
break;
case 'ellipse':
pdf.ellipse(
k * parseInt(node.getAttribute('cx'), 10),
k * parseInt(node.getAttribute('cy'), 10),
k * parseInt(node.getAttribute('rx'), 10),
k * parseInt(node.getAttribute('ry'), 10),
colorMode
);
removeAttributes(node, pdfSvgAttr.ellipse);
break;
case 'circle':
pdf.circle(
k * parseInt(node.getAttribute('cx'), 10),
k * parseInt(node.getAttribute('cy'), 10),
k * parseInt(node.getAttribute('r'), 10),
colorMode
);
removeAttributes(node, pdfSvgAttr.circle);
break;
case 'text':
if (node.hasAttribute('font-family')) {
switch ((node.getAttribute('font-family') || '').toLowerCase()) {
case 'serif': pdf.setFont('times'); break;
case 'monospace': pdf.setFont('courier'); break;
default:
node.setAttribute('font-family', 'sans-serif');
pdf.setFont('helvetica');
}
}
if (hasFillColor) {
pdf.setTextColor(fillRGB.r, fillRGB.g, fillRGB.b);
}
var fontType = '';
if (node.hasAttribute('font-weight')) {
if (node.getAttribute('font-weight') === 'bold') {
fontType = 'bold';
} else {
node.removeAttribute('font-weight');
}
}
if (node.hasAttribute('font-style')) {
if (node.getAttribute('font-style') === 'italic') {
fontType += 'italic';
} else {
node.removeAttribute('font-style');
}
}
pdf.setFontType(fontType);
var pdfFontSize = 16;
if (node.hasAttribute('font-size')) {
pdfFontSize = parseInt(node.getAttribute('font-size'), 10);
}
var box = node.getBBox();
// FIXME: use more accurate positioning!!
var x, y, xOffset = 0;
if (node.hasAttribute('text-anchor')) {
switch (node.getAttribute('text-anchor')) {
case 'end': xOffset = box.width; break;
case 'middle': xOffset = box.width / 2; break;
case 'start': break;
case 'default': node.setAttribute('text-anchor', 'start'); break;
}
x = parseInt(node.getAttribute('x'), 10) - xOffset;
y = parseInt(node.getAttribute('y'), 10);
}
// console.log("fontSize:", pdfFontSize, "text:", node.textContent);
pdf.setFontSize(pdfFontSize).text(
k * x,
k * y,
node.textContent
);
removeAttributes(node, pdfSvgAttr.text);
break;
// TODO: image
default:
if (remove) {
console.log("can't translate to pdf:", node);
node.parentNode.removeChild(node);
}
}
});
return pdf;
};
jsPDFAPI.addSVG = function(element, x, y, options) {
jsPDFAPI.addSVG = function (element, x, y, options) {
options = (options === undef ? {} : options);
options.x_offset = x;
options.y_offset = y;
options = (options === undef ? {} : options);
options.x_offset = x;
options.y_offset = y;
if (typeof element === 'string') {
element = new DOMParser().parseFromString(element, 'text/xml').documentElement;
}
svgElementToPdf(element, this, options);
return this;
};
if (typeof element === 'string') {
element = new DOMParser().parseFromString(element, 'text/xml').documentElement;
}
svgElementToPdf(element, this, options);
return this;
};
}(jsPDF.API));

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "af",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Spaar",
"cancel": "Annuleer",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Verwyder Laag",
"move_down": "Beweeg afbreek Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "ar",
dir : "ltr",
dir: "ltr",
common: {
"ok": "حفظ",
"cancel": "إلغاء",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "حذف طبقة",
"move_down": "تحرك لأسفل طبقة",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "az",
dir : "ltr",
dir: "ltr",
common: {
"ok": "OK",
"cancel": "Cancel",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Move Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "be",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Захаваць",
"cancel": "Адмена",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Выдаліць слой",
"move_down": "Перамясціць слой на",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "bg",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Спасявам",
"cancel": "Отказ",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Изтриване на слой",
"move_down": "Move слой надолу",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "ca",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Salvar",
"cancel": "Cancel",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Eliminar capa",
"move_down": "Mou la capa de Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "cs",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Uložit",
"cancel": "Storno",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Vrstva",
"layer": "Vrstva",
"layers": "Layers",
"del": "Odstranit vrstvu",
"move_down": "Přesunout vrstvu níž",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Nevhodná hodnota",
"noContentToFitTo":"Vyberte oblast pro přizpůsobení",
"dupeLayerName":"Taková vrstva už bohužel existuje",
"enterUniqueLayerName":"Zadejte prosím jedinečné jméno pro vrstvu",
"enterNewLayerName":"Zadejte prosím jméno pro novou vrstvu",
"layerHasThatName":"Vrstva už se tak jmenuje",
"QmoveElemsToLayer":"Opravdu chcete přesunout vybrané objekty do vrstvy '%s'?",
"QwantToClear":"Opravdu chcete smazat současný dokument?\nHistorie změn bude také smazána.",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"Chyba v parsování zdrojového kódu SVG.\nChcete se vrátit k původnímu?",
"QignoreSourceChanges":"Opravdu chcete stornovat změny provedené v SVG kódu?",
"featNotSupported":"Tato vlastnost ještě není k dispozici",
"enterNewImgURL":"Vložte adresu URL, na které se nachází vkládaný obrázek",
"invalidAttrValGiven": "Nevhodná hodnota",
"noContentToFitTo": "Vyberte oblast pro přizpůsobení",
"dupeLayerName": "Taková vrstva už bohužel existuje",
"enterUniqueLayerName": "Zadejte prosím jedinečné jméno pro vrstvu",
"enterNewLayerName": "Zadejte prosím jméno pro novou vrstvu",
"layerHasThatName": "Vrstva už se tak jmenuje",
"QmoveElemsToLayer": "Opravdu chcete přesunout vybrané objekty do vrstvy '%s'?",
"QwantToClear": "Opravdu chcete smazat současný dokument?\nHistorie změn bude také smazána.",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "Chyba v parsování zdrojového kódu SVG.\nChcete se vrátit k původnímu?",
"QignoreSourceChanges": "Opravdu chcete stornovat změny provedené v SVG kódu?",
"featNotSupported": "Tato vlastnost ještě není k dispozici",
"enterNewImgURL": "Vložte adresu URL, na které se nachází vkládaný obrázek",
"defsFailOnSave": "POZOR: Kvůli nedokonalosti Vašeho prohlížeče se mohou některé části dokumentu špatně vykreslovat (mohou chybět barevné přechody nebo některé objekty). Po uložení dokumentu by se ale vše mělo zobrazovat správně.",
"loadingImage":"Nahrávám obrázek ...",
"loadingImage": "Nahrávám obrázek ...",
"saveFromBrowser": "Použijte nabídku \"Uložit stránku jako ...\" ve Vašem prohlížeči pro uložení dokumentu do souboru %s.",
"noteTheseIssues": "Mohou se vyskytnout následující problémy: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "cy",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Cadw",
"cancel": "Canslo",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Dileu Haen",
"move_down": "Symud Haen i Lawr",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "da",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Gemme",
"cancel": "Annuller",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Slet Layer",
"move_down": "Flyt lag ned",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "de",
dir : "ltr",
dir: "ltr",
common: {
"ok": "OK",
"cancel": "Abbrechen",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Als neues Dokument öffnen"
},
notification: {
"invalidAttrValGiven":"Fehlerhafter Wert",
"noContentToFitTo":"Kein Inhalt anzupassen",
"dupeLayerName":"Eine Ebene hat bereits diesen Namen",
"enterUniqueLayerName":"Verwenden Sie einen eindeutigen Namen für die Ebene",
"enterNewLayerName":"Geben Sie bitte einen neuen Namen für die Ebene ein",
"layerHasThatName":"Eine Ebene hat bereits diesen Namen",
"QmoveElemsToLayer":"Verschiebe ausgewählte Objekte in die Ebene '%s'?",
"QwantToClear":"Möchten Sie die Zeichnung löschen?\nDadurch wird auch die Rückgängig-Funktion zurückgesetzt!",
"QwantToOpen":"Möchten Sie eine neue Datei öffnen?\nDadurch wird auch die Rückgängig-Funktion zurückgesetzt!",
"QerrorsRevertToSource":"Es gibt Parser-Fehler in der SVG-Quelle.\nDie Original-SVG wiederherstellen?",
"QignoreSourceChanges":"Sollen die Änderungen an der SVG-Quelle ignoriert werden?",
"featNotSupported":"Diese Eigenschaft wird nicht unterstützt",
"enterNewImgURL":"Geben Sie die URL für das neue Bild an",
"invalidAttrValGiven": "Fehlerhafter Wert",
"noContentToFitTo": "Kein Inhalt anzupassen",
"dupeLayerName": "Eine Ebene hat bereits diesen Namen",
"enterUniqueLayerName": "Verwenden Sie einen eindeutigen Namen für die Ebene",
"enterNewLayerName": "Geben Sie bitte einen neuen Namen für die Ebene ein",
"layerHasThatName": "Eine Ebene hat bereits diesen Namen",
"QmoveElemsToLayer": "Verschiebe ausgewählte Objekte in die Ebene '%s'?",
"QwantToClear": "Möchten Sie die Zeichnung löschen?\nDadurch wird auch die Rückgängig-Funktion zurückgesetzt!",
"QwantToOpen": "Möchten Sie eine neue Datei öffnen?\nDadurch wird auch die Rückgängig-Funktion zurückgesetzt!",
"QerrorsRevertToSource": "Es gibt Parser-Fehler in der SVG-Quelle.\nDie Original-SVG wiederherstellen?",
"QignoreSourceChanges": "Sollen die Änderungen an der SVG-Quelle ignoriert werden?",
"featNotSupported": "Diese Eigenschaft wird nicht unterstützt",
"enterNewImgURL": "Geben Sie die URL für das neue Bild an",
"defsFailOnSave": "Hinweis: Aufgrund eines Fehlers in Ihrem Browser kann dieses Bild falsch angezeigt werden (fehlende Gradienten oder Elemente). Es wird jedoch richtig angezeigt, sobald es gespeichert wird.",
"loadingImage":"Bild wird geladen, bitte warten ...",
"loadingImage": "Bild wird geladen, bitte warten ...",
"saveFromBrowser": "Wählen Sie \"Speichern unter ...\" in Ihrem Browser, um das Bild als Datei %s zu speichern.",
"noteTheseIssues": "Beachten Sie außerdem die folgenden Probleme: ",
"unsavedChanges": "Es sind nicht-gespeicherte Änderungen vorhanden.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Empfange \"%s\"..."
},
confirmSetStorage: {
message: "Standardmäßig kann SVG-Edit Ihre Editor-Einstellungen "+
"und die SVG-Inhalte lokal auf Ihrem Gerät abspeichern. So brauchen Sie "+
"nicht jedes Mal die SVG neu laden. Falls Sie aus Datenschutzgründen "+
"dies nicht wollen, "+
message: "Standardmäßig kann SVG-Edit Ihre Editor-Einstellungen " +
"und die SVG-Inhalte lokal auf Ihrem Gerät abspeichern. So brauchen Sie " +
"nicht jedes Mal die SVG neu laden. Falls Sie aus Datenschutzgründen " +
"dies nicht wollen, " +
"können Sie die Standardeinstellung im Folgenden ändern.",
storagePrefsAndContent: "Editor-Einstellungen und SVG-Inhalt lokal speichern",
storagePrefsOnly: "Nur Editor-Einstellungen lokal speichern",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "el",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Αποθηκεύω",
"cancel": "Άκυρο",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Διαγραφήστρώματος",
"move_down": "Μετακίνηση Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "en",
dir : "ltr",
dir: "ltr",
common: {
"ok": "OK",
"cancel": "Cancel",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Move Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer \"%s\"?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer \"%s\"?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "es",
dir : "ltr",
dir: "ltr",
common: {
"ok": "OK",
"cancel": "Cancelar",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Capa",
"layer": "Capa",
"layers": "Layers",
"del": "Suprimir capa",
"move_down": "Mover la capa hacia abajo",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Valor no válido",
"noContentToFitTo":"No existe un contenido al que ajustarse.",
"dupeLayerName":"¡Ya existe una capa con este nombre!",
"enterUniqueLayerName":"Introduzca otro nombre distinto para la capa.",
"enterNewLayerName":"Introduzca el nuevo nombre de la capa.",
"layerHasThatName":"El nombre introducido es el nombre actual de la capa.",
"QmoveElemsToLayer":"¿Desplazar los elementos seleccionados a la capa '%s'?",
"QwantToClear":"¿Desea borrar el dibujo?\n¡El historial de acciones también se borrará!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"Existen errores sintácticos en su código fuente SVG.\n¿Desea volver al código fuente SVG original?",
"QignoreSourceChanges":"¿Desea ignorar los cambios realizados sobre el código fuente SVG?",
"featNotSupported":"Función no compatible.",
"enterNewImgURL":"Introduzca la nueva URL de la imagen.",
"invalidAttrValGiven": "Valor no válido",
"noContentToFitTo": "No existe un contenido al que ajustarse.",
"dupeLayerName": "¡Ya existe una capa con este nombre!",
"enterUniqueLayerName": "Introduzca otro nombre distinto para la capa.",
"enterNewLayerName": "Introduzca el nuevo nombre de la capa.",
"layerHasThatName": "El nombre introducido es el nombre actual de la capa.",
"QmoveElemsToLayer": "¿Desplazar los elementos seleccionados a la capa '%s'?",
"QwantToClear": "¿Desea borrar el dibujo?\n¡El historial de acciones también se borrará!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "Existen errores sintácticos en su código fuente SVG.\n¿Desea volver al código fuente SVG original?",
"QignoreSourceChanges": "¿Desea ignorar los cambios realizados sobre el código fuente SVG?",
"featNotSupported": "Función no compatible.",
"enterNewImgURL": "Introduzca la nueva URL de la imagen.",
"defsFailOnSave": "NOTA: Debido a un fallo de su navegador, es posible que la imagen aparezca de forma incorrecta (ciertas gradaciones o elementos podría perderse). La imagen aparecerá en su forma correcta una vez guardada.",
"loadingImage":"Cargando imagen. Espere, por favor.",
"loadingImage": "Cargando imagen. Espere, por favor.",
"saveFromBrowser": "Seleccionar \"Guardar como...\" en su navegador para guardar la imagen en forma de archivo %s.",
"noteTheseIssues": "Existen además los problemas siguientes:",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "et",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Salvestama",
"cancel": "Tühista",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Kustuta Kiht",
"move_down": "Liiguta kiht alla",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "fa",
dir : "ltr",
dir: "ltr",
common: {
"ok": "‫تأیید‬",
"cancel": "‫لغو‬",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"‫لایه‬",
"layer": "‫لایه‬",
"layers": "Layers",
"del": "‫حذف لایه‬",
"move_down": "‫انتقال لایه به پایین‬",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"‫مقدار داده شده نامعتبر است‬",
"noContentToFitTo":"‫محتوایی برای هم اندازه شدن وجود ندارد‬",
"dupeLayerName":"‫لایه ای با آن نام وجود دارد!",
"enterUniqueLayerName":"‫لطفا یک نام لایه یکتا انتخاب کنید‬",
"enterNewLayerName":"‫لطفا نام لایه جدید را وارد کنید‬",
"layerHasThatName":"‫لایه از قبل آن نام را دارد‬",
"QmoveElemsToLayer":"‫عناصر انتخاب شده به لایه '%s' منتقل شوند؟‬",
"QwantToClear":"‫آیا مطمئن هستید که می خواهید نقاشی را پاک کنید؟\nاین عمل باعث حذف تاریخچه واگرد شما خواهد شد!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"‫در منبع SVG شما خطاهای تجزیه (parse) وجود داشت.\nبه منبع SVG اصلی بازگردانده شود؟‬",
"QignoreSourceChanges":"‫تغییرات اعمال شده در منبع SVG نادیده گرفته شوند؟‬",
"featNotSupported":"‫این ویژگی پشتیبانی نشده است‬",
"enterNewImgURL":"‫نشانی وب (url) تصویر جدید را وارد کنید‬",
"invalidAttrValGiven": "‫مقدار داده شده نامعتبر است‬",
"noContentToFitTo": "‫محتوایی برای هم اندازه شدن وجود ندارد‬",
"dupeLayerName": "‫لایه ای با آن نام وجود دارد!",
"enterUniqueLayerName": "‫لطفا یک نام لایه یکتا انتخاب کنید‬",
"enterNewLayerName": "‫لطفا نام لایه جدید را وارد کنید‬",
"layerHasThatName": "‫لایه از قبل آن نام را دارد‬",
"QmoveElemsToLayer": "‫عناصر انتخاب شده به لایه '%s' منتقل شوند؟‬",
"QwantToClear": "‫آیا مطمئن هستید که می خواهید نقاشی را پاک کنید؟\nاین عمل باعث حذف تاریخچه واگرد شما خواهد شد!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "‫در منبع SVG شما خطاهای تجزیه (parse) وجود داشت.\nبه منبع SVG اصلی بازگردانده شود؟‬",
"QignoreSourceChanges": "‫تغییرات اعمال شده در منبع SVG نادیده گرفته شوند؟‬",
"featNotSupported": "‫این ویژگی پشتیبانی نشده است‬",
"enterNewImgURL": "‫نشانی وب (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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "fi",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Tallentaa",
"cancel": "Peruuta",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Poista Layer",
"move_down": "Siirrä Layer alas",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,4 +1,5 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "fr",
dir: "ltr",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Placer au fond"
},
layers: {
"layer":"Calque",
"layer": "Calque",
"layers": "Calques",
"del": "Supprimer le calque",
"move_down": "Descendre le calque",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "fy",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Ok",
"cancel": "Ôfbrekke",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Laach",
"layer": "Laach",
"layers": "Layers",
"del": "Laach fuortsmite",
"move_down": "Laach omleech bringe",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Ferkearde waarde jûn",
"noContentToFitTo":"Gjin ynhâld om te passen",
"dupeLayerName":"Der is al in laach mei dy namme!",
"enterUniqueLayerName":"Type in unyke laachnamme",
"enterNewLayerName":"Type in nije laachnamme",
"layerHasThatName":"Laach hat dy namme al",
"QmoveElemsToLayer":"Selektearre ûnderdielen ferplaatse nei '%s'?",
"QwantToClear":"Ôfbielding leechmeitsje? Dit sil ek de skiednis fuortsmite!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"Der wiene flaters yn de SVG-boarne.\nWeromgean nei foarige SVG-boarne?",
"QignoreSourceChanges":"Feroarings yn SVG-boarne negeare?",
"featNotSupported":"Funksje wurdt net ûndersteund",
"enterNewImgURL":"Jou de nije URL",
"invalidAttrValGiven": "Ferkearde waarde jûn",
"noContentToFitTo": "Gjin ynhâld om te passen",
"dupeLayerName": "Der is al in laach mei dy namme!",
"enterUniqueLayerName": "Type in unyke laachnamme",
"enterNewLayerName": "Type in nije laachnamme",
"layerHasThatName": "Laach hat dy namme al",
"QmoveElemsToLayer": "Selektearre ûnderdielen ferplaatse nei '%s'?",
"QwantToClear": "Ôfbielding leechmeitsje? Dit sil ek de skiednis fuortsmite!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "Der wiene flaters yn de SVG-boarne.\nWeromgean nei foarige SVG-boarne?",
"QignoreSourceChanges": "Feroarings yn SVG-boarne negeare?",
"featNotSupported": "Funksje wurdt net ûndersteund",
"enterNewImgURL": "Jou de nije 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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "ga",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Sábháil",
"cancel": "Cealaigh",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Scrios Sraith",
"move_down": "Bog Sraith Síos",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "gl",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Gardar",
"cancel": "Cancelar",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Move capa inferior",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "he",
dir : "ltr",
dir: "ltr",
common: {
"ok": "לשמור",
"cancel": "ביטול",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "מחיקת שכבה",
"move_down": "הזז למטה שכבה",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "hi",
dir : "ltr",
dir: "ltr",
common: {
"ok": "बचाना",
"cancel": "रद्द करें",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"परत",
"layer": "परत",
"layers": "Layers",
"del": "परत हटाएँ",
"move_down": "परत नीचे ले जाएँ",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"अमान्य मूल्य",
"noContentToFitTo":"कोई सामग्री फिट करने के लिए उपलब्ध नहीं",
"dupeLayerName":"इस नाम कि परत पहले से मौजूद है !",
"enterUniqueLayerName":"कृपया परत का एक अद्वितीय नाम डालें",
"enterNewLayerName":"कृपया परत का एक नया नाम डालें",
"layerHasThatName":"परत का पहले से ही यही नाम है",
"QmoveElemsToLayer":"चयनित अंश को परत '%s' पर ले जाएँ ?",
"QwantToClear":"क्या आप छवि साफ़ करना चाहते हैं?\nयह आपके उन्डू इतिहास को भी मिटा देगा!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"आपके एस.वी.जी. स्रोत में त्रुटियों थी.\nक्या आप मूल एस.वी.जी स्रोत पर वापिस जाना चाहते हैं?",
"QignoreSourceChanges":"एसवीजी स्रोत से लाये बदलावों को ध्यान न दें?",
"featNotSupported":"सुविधा असमर्थित है",
"enterNewImgURL":"नई छवि URL दर्ज करें",
"invalidAttrValGiven": "अमान्य मूल्य",
"noContentToFitTo": "कोई सामग्री फिट करने के लिए उपलब्ध नहीं",
"dupeLayerName": "इस नाम कि परत पहले से मौजूद है !",
"enterUniqueLayerName": "कृपया परत का एक अद्वितीय नाम डालें",
"enterNewLayerName": "कृपया परत का एक नया नाम डालें",
"layerHasThatName": "परत का पहले से ही यही नाम है",
"QmoveElemsToLayer": "चयनित अंश को परत '%s' पर ले जाएँ ?",
"QwantToClear": "क्या आप छवि साफ़ करना चाहते हैं?\nयह आपके उन्डू इतिहास को भी मिटा देगा!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "आपके एस.वी.जी. स्रोत में त्रुटियों थी.\nक्या आप मूल एस.वी.जी स्रोत पर वापिस जाना चाहते हैं?",
"QignoreSourceChanges": "एसवीजी स्रोत से लाये बदलावों को ध्यान न दें?",
"featNotSupported": "सुविधा असमर्थित है",
"enterNewImgURL": "नई छवि 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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "hr",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Spremiti",
"cancel": "Odustani",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Brisanje sloja",
"move_down": "Move Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "hu",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Ment",
"cancel": "Szakítani",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Réteg törlése",
"move_down": "Mozgatása lefelé",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "hy",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Save",
"cancel": "Cancel",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Move Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "id",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Simpan",
"cancel": "Batal",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Hapus Layer",
"move_down": "Pindahkan Layer Bawah",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "is",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Vista",
"cancel": "Hætta",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Eyða Lag",
"move_down": "Færa Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "it",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Salva",
"cancel": "Annulla",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Livello",
"layer": "Livello",
"layers": "Layers",
"del": "Elimina il livello",
"move_down": "Sposta indietro il livello",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Valore assegnato non valido",
"noContentToFitTo":"Non c'è contenuto cui adeguarsi",
"dupeLayerName":"C'è già un livello con questo nome!",
"enterUniqueLayerName":"Assegna un diverso nome a ciascun livello, grazie!",
"enterNewLayerName":"Assegna un nome al livello",
"layerHasThatName":"Un livello ha già questo nome",
"QmoveElemsToLayer":"Sposta gli elementi selezionali al livello '%s'?",
"QwantToClear":"Vuoi cancellare il disegno?\nVerrà eliminato anche lo storico delle modifiche!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"Ci sono errori nel codice sorgente SVG.\nRitorno al codice originale?",
"QignoreSourceChanges":"Ignoro i cambiamenti nel sorgente SVG?",
"featNotSupported":"Caratteristica non supportata",
"enterNewImgURL":"Scrivi un nuovo URL per l'immagine",
"invalidAttrValGiven": "Valore assegnato non valido",
"noContentToFitTo": "Non c'è contenuto cui adeguarsi",
"dupeLayerName": "C'è già un livello con questo nome!",
"enterUniqueLayerName": "Assegna un diverso nome a ciascun livello, grazie!",
"enterNewLayerName": "Assegna un nome al livello",
"layerHasThatName": "Un livello ha già questo nome",
"QmoveElemsToLayer": "Sposta gli elementi selezionali al livello '%s'?",
"QwantToClear": "Vuoi cancellare il disegno?\nVerrà eliminato anche lo storico delle modifiche!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "Ci sono errori nel codice sorgente SVG.\nRitorno al codice originale?",
"QignoreSourceChanges": "Ignoro i cambiamenti nel sorgente SVG?",
"featNotSupported": "Caratteristica non supportata",
"enterNewImgURL": "Scrivi un nuovo URL per l'immagine",
"defsFailOnSave": "NOTA: A causa dlle caratteristiche del tuo browser, l'immagine potrà apparire errata (senza elementi o gradazioni) finché non sarà salvata.",
"loadingImage":"Sto caricando l'immagine. attendere prego...",
"loadingImage": "Sto caricando l'immagine. attendere prego...",
"saveFromBrowser": "Seleziona \"Salva con nome...\" nel browser per salvare l'immagine con nome %s .",
"noteTheseIssues": "Nota le seguenti particolarità: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "ja",
dir : "ltr",
dir: "ltr",
common: {
"ok": "OK",
"cancel": "キャンセル",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"レイヤ",
"layer": "レイヤ",
"layers": "Layers",
"del": "レイヤの削除",
"move_down": "レイヤを下へ移動",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"無効な値が指定されています。",
"noContentToFitTo":"合わせる対象のコンテンツがありません。",
"dupeLayerName":"同名のレイヤーが既に存在します。",
"enterUniqueLayerName":"新規レイヤの一意な名前を入力してください。",
"enterNewLayerName":"レイヤの新しい名前を入力してください。",
"layerHasThatName":"既に同名が付いています。",
"QmoveElemsToLayer":"選択した要素をレイヤー '%s' に移動しますか?",
"QwantToClear":"キャンバスをクリアしますか?\nアンドゥ履歴も消去されます。",
"QwantToOpen":"新しいファイルを開きますか?\nアンドゥ履歴も消去されます。",
"QerrorsRevertToSource":"ソースにエラーがあります。\n元のソースに戻しますか",
"QignoreSourceChanges":"ソースの変更を無視しますか?",
"featNotSupported":"機能はサポートされていません。",
"enterNewImgURL":"画像のURLを入力してください。",
"invalidAttrValGiven": "無効な値が指定されています。",
"noContentToFitTo": "合わせる対象のコンテンツがありません。",
"dupeLayerName": "同名のレイヤーが既に存在します。",
"enterUniqueLayerName": "新規レイヤの一意な名前を入力してください。",
"enterNewLayerName": "レイヤの新しい名前を入力してください。",
"layerHasThatName": "既に同名が付いています。",
"QmoveElemsToLayer": "選択した要素をレイヤー '%s' に移動しますか?",
"QwantToClear": "キャンバスをクリアしますか?\nアンドゥ履歴も消去されます。",
"QwantToOpen": "新しいファイルを開きますか?\nアンドゥ履歴も消去されます。",
"QerrorsRevertToSource": "ソースにエラーがあります。\n元のソースに戻しますか",
"QignoreSourceChanges": "ソースの変更を無視しますか?",
"featNotSupported": "機能はサポートされていません。",
"enterNewImgURL": "画像の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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "ko",
dir : "ltr",
dir: "ltr",
common: {
"ok": "저장",
"cancel": "취소",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "레이어 삭제",
"move_down": "레이어 아래로 이동",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "lt",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Saugoti",
"cancel": "Atšaukti",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Ištrinti Layer",
"move_down": "Perkelti sluoksnį Žemyn",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,8 +1,8 @@
/*globals svgEditor */
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "lv",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Glābt",
"cancel": "Atcelt",
@ -148,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Dzēst Layer",
"move_down": "Pārvietot slāni uz leju",
@ -211,24 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?
This will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?
This will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.
Revert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -238,10 +235,10 @@ Revert back to original SVG source?",
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "mk",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Зачувува",
"cancel": "Откажи",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Избриши Слој",
"move_down": "Премести слој долу",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "ms",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Simpan",
"cancel": "Batal",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Padam Layer",
"move_down": "Pindah Layer Bawah",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "mt",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Save",
"cancel": "Ikkanċella",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Ħassar Layer",
"move_down": "Move Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "nl",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Ok",
"cancel": "Annuleren",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Laag",
"layer": "Laag",
"layers": "Layers",
"del": "Delete laag",
"move_down": "Beweeg laag omlaag",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Verkeerde waarde gegeven",
"noContentToFitTo":"Geen inhoud om omheen te passen",
"dupeLayerName":"Er is al een laag met die naam!",
"enterUniqueLayerName":"Geef een unieke laag naam",
"enterNewLayerName":"Geef een nieuwe laag naam",
"layerHasThatName":"Laag heeft al die naam",
"QmoveElemsToLayer":"Verplaats geselecteerde elementen naar laag '%s'?",
"QwantToClear":"Wil je de afbeelding leeg maken?\nDit zal ook de ongedaan maak geschiedenis wissen!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"Er waren analyse fouten in je SVG bron.\nTeruggaan naar de originele SVG bron?",
"QignoreSourceChanges":"Veranderingen in de SVG bron negeren?",
"featNotSupported":"Functie wordt niet ondersteund",
"enterNewImgURL":"Geef de nieuwe afbeelding URL",
"invalidAttrValGiven": "Verkeerde waarde gegeven",
"noContentToFitTo": "Geen inhoud om omheen te passen",
"dupeLayerName": "Er is al een laag met die naam!",
"enterUniqueLayerName": "Geef een unieke laag naam",
"enterNewLayerName": "Geef een nieuwe laag naam",
"layerHasThatName": "Laag heeft al die naam",
"QmoveElemsToLayer": "Verplaats geselecteerde elementen naar laag '%s'?",
"QwantToClear": "Wil je de afbeelding leeg maken?\nDit zal ook de ongedaan maak geschiedenis wissen!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "Er waren analyse fouten in je SVG bron.\nTeruggaan naar de originele SVG bron?",
"QignoreSourceChanges": "Veranderingen in de SVG bron negeren?",
"featNotSupported": "Functie wordt niet ondersteund",
"enterNewImgURL": "Geef de nieuwe afbeelding URL",
"defsFailOnSave": "Let op: Vanwege een fout in je browser, kan dit plaatje verkeerd verschijnen (missende hoeken en/of elementen). Het zal goed verschijnen zodra het plaatje echt wordt opgeslagen.",
"loadingImage":"Laden van het plaatje, even geduld aub...",
"loadingImage": "Laden van het plaatje, even geduld aub...",
"saveFromBrowser": "Kies \"Save As...\" in je browser om dit plaatje op te slaan als een %s bestand.",
"noteTheseIssues": "Let op de volgende problemen: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "no",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Lagre",
"cancel": "Avbryt",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Slett laget",
"move_down": "Flytt laget ned",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "pl",
dir : "ltr",
dir: "ltr",
author: "Aleksander Lurie",
common: {
"ok": "OK",
@ -148,7 +149,7 @@ svgEditor.readLang({
"move_back": "Przenieś do tyłu"
},
layers: {
"layer":"Warstwa",
"layer": "Warstwa",
"layers": "Warstwy",
"del": "Usuń warstwę",
"move_down": "Przenieś warstwę w dół",
@ -211,21 +212,21 @@ svgEditor.readLang({
"open": "Otwórz jako nowy dokument"
},
notification: {
"invalidAttrValGiven":"Podano nieprawidłową wartość",
"noContentToFitTo":"Brak zawartości do dopasowania",
"dupeLayerName":"Istnieje już warstwa o takiej nazwie!",
"enterUniqueLayerName":"Podaj unikalną nazwę warstwy",
"enterNewLayerName":"Podaj nazwe nowej warstwy",
"layerHasThatName":"Warstwa już tak się nazywa",
"QmoveElemsToLayer":"Przenies zaznaczone elementy do warstwy \"%s\"?",
"QwantToClear":"Jesteś pewien, że chcesz wyczyścić pole robocze?\nHistoria projektu również zostanie skasowana",
"QwantToOpen":"Jesteś pewien, że chcesz otworzyć nowy plik?\nHistoria projektu również zostanie skasowana",
"QerrorsRevertToSource":"Błąd parsowania źródła Twojego pliku SVG.\nPrzywrócić orginalne źródło pliku SVG?",
"QignoreSourceChanges":"Zignorowac zmiany w źródle pliku SVG?",
"featNotSupported":"Funkcjonalność niedostępna",
"enterNewImgURL":"Podaj adres URL nowego obrazu",
"invalidAttrValGiven": "Podano nieprawidłową wartość",
"noContentToFitTo": "Brak zawartości do dopasowania",
"dupeLayerName": "Istnieje już warstwa o takiej nazwie!",
"enterUniqueLayerName": "Podaj unikalną nazwę warstwy",
"enterNewLayerName": "Podaj nazwe nowej warstwy",
"layerHasThatName": "Warstwa już tak się nazywa",
"QmoveElemsToLayer": "Przenies zaznaczone elementy do warstwy \"%s\"?",
"QwantToClear": "Jesteś pewien, że chcesz wyczyścić pole robocze?\nHistoria projektu również zostanie skasowana",
"QwantToOpen": "Jesteś pewien, że chcesz otworzyć nowy plik?\nHistoria projektu również zostanie skasowana",
"QerrorsRevertToSource": "Błąd parsowania źródła Twojego pliku SVG.\nPrzywrócić orginalne źródło pliku SVG?",
"QignoreSourceChanges": "Zignorowac zmiany w źródle pliku SVG?",
"featNotSupported": "Funkcjonalność niedostępna",
"enterNewImgURL": "Podaj adres URL nowego obrazu",
"defsFailOnSave": "Uwaga: Ze względu na błąd w przeglądarce, ten obraz może się źle wyswietlać (brak gradientów lub elementów). Będzie jednak wyświetlał się poprawnie skoro został zapisany.",
"loadingImage":"Ładowanie obrazu, proszę czekać...",
"loadingImage": "Ładowanie obrazu, proszę czekać...",
"saveFromBrowser": "Wybierz \"Zapisz jako...\" w przeglądarce aby zapisać obraz jako plik %s.",
"noteTheseIssues": "Zwróć uwagę na nastepujące kwestie: ",
"unsavedChanges": "Wykryto niezapisane zmiany.",
@ -235,10 +236,10 @@ svgEditor.readLang({
"retrieving": "Pobieranie \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "pt-BR",
dir : "ltr",
dir: "ltr",
common: {
"ok": "OK",
"cancel": "Cancelar",
@ -19,12 +20,12 @@ svgEditor.readLang({
},
ui: {
"toggle_stroke_tools": "Mais opções de traço",
"palette_info": "Click para mudar a cor de preenchimento, shift-click para mudar a cor do traço",
"palette_info": "Click para mudar a cor de preenchimento, shift-click para mudar a cor do traço",
"zoom_level": "Mudar zoom",
"panel_drag": "Arraste para redimensionar o painel"
"panel_drag": "Arraste para redimensionar o painel"
},
properties: {
"id": "Identifica o elemento",
"id": "Identifica o elemento",
"fill_color": "Mudar a cor de preenchimento",
"stroke_color": "Mudar a cor do traço",
"stroke_style": "Mudar o estilo do traço",
@ -69,7 +70,7 @@ svgEditor.readLang({
"italic": "Italico"
},
tools: {
"main_menu": "Menu Principal",
"main_menu": "Menu Principal",
"bkgnd_color_opac": "Mudar cor/opacidade do fundo",
"connector_no_arrow": "Sem flecha",
"fitToContent": "Ajustar ao conteúdo",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Enviar para Trás"
},
layers: {
"layer":"Camada",
"layer": "Camada",
"layers": "Camadas",
"del": "Deletar Camada",
"move_down": "Enviar Camada para Trás",
@ -161,7 +162,7 @@ svgEditor.readLang({
"move_selected": "Mover elementos selecionados para outra camada"
},
config: {
"image_props": "Propriedades",
"image_props": "Propriedades",
"doc_title": "Título",
"doc_dims": "Dimensões",
"included_images": "Imagens",
@ -209,21 +210,21 @@ svgEditor.readLang({
"open": "Abrir como novo"
},
notification: {
"invalidAttrValGiven":"Valor inválido",
"noContentToFitTo":"Não há conteúdo",
"dupeLayerName":"Nome duplicado",
"enterUniqueLayerName":"Insira um nome único",
"enterNewLayerName":"Insira um novo nome",
"layerHasThatName":"A camada já pussui este nome",
"QmoveElemsToLayer":"Mover elementos selecionados para a camada: \"%s\"?",
"QwantToClear":"Deseja criar um novo arquivo?\nO histórico também será apagado!",
"QwantToOpen":"Deseja abrir um novo arquivo?\nO histórico também será apagado!",
"QerrorsRevertToSource":"Foram encontrados erros ná análise do código SVG.\nReverter para o código SVG original?",
"QignoreSourceChanges":"Ignorar as mudanças no código SVG?",
"featNotSupported":"Recurso não suportado",
"enterNewImgURL":"Insira nova URL da imagem",
"invalidAttrValGiven": "Valor inválido",
"noContentToFitTo": "Não há conteúdo",
"dupeLayerName": "Nome duplicado",
"enterUniqueLayerName": "Insira um nome único",
"enterNewLayerName": "Insira um novo nome",
"layerHasThatName": "A camada já pussui este nome",
"QmoveElemsToLayer": "Mover elementos selecionados para a camada: \"%s\"?",
"QwantToClear": "Deseja criar um novo arquivo?\nO histórico também será apagado!",
"QwantToOpen": "Deseja abrir um novo arquivo?\nO histórico também será apagado!",
"QerrorsRevertToSource": "Foram encontrados erros ná análise do código SVG.\nReverter para o código SVG original?",
"QignoreSourceChanges": "Ignorar as mudanças no código SVG?",
"featNotSupported": "Recurso não suportado",
"enterNewImgURL": "Insira nova URL da imagem",
"defsFailOnSave": "Atenção: Devido a um bug em seu navegador, esta imagem pode apresentar erros, porém será salva corretamente.",
"loadingImage":"Carregando imagem, por favor aguarde...",
"loadingImage": "Carregando imagem, por favor aguarde...",
"saveFromBrowser": "Selecione \"Salvar como...\" no seu navegador para salvar esta imagem como um arquivo %s.",
"noteTheseIssues": "Atenção para as seguintes questões: ",
"unsavedChanges": "Existem alterações não salvas.",
@ -233,10 +234,10 @@ svgEditor.readLang({
"retrieving": "Recuperando \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "pt-PT",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Salvar",
"cancel": "Cancelar",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Move camada para baixo",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "ro",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Ok",
"cancel": "Anulaţi",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Trimite in spate"
},
layers: {
"layer":"Strat",
"layer": "Strat",
"layers": "Straturi",
"del": "Ştergeţi Strat",
"move_down": "Mutare Strat în Jos",
@ -209,21 +210,21 @@ svgEditor.readLang({
"open": "Deschideţi ca si document nou"
},
notification: {
"invalidAttrValGiven":"Valoarea data nu este validă",
"noContentToFitTo":"Fara conţinut de referinţă",
"dupeLayerName":"Deja exista un strat numit asa!",
"enterUniqueLayerName":"Rog introduceţi un nume unic",
"enterNewLayerName":"Rog introduceţi un nume pentru strat",
"layerHasThatName":"Statul deja are acest nume",
"QmoveElemsToLayer":"Mutaţi elementele selectate pe stratul '%s'?",
"QwantToClear":"Doriti să ştergeţi desenul?\nAceasta va sterge si posibilitatea de anulare!",
"QwantToOpen":"Doriti sa deschideţi un nou fişier?\nAceasta va şterge istoricul!",
"QerrorsRevertToSource":"Sunt erori de parsing in sursa SVG.\nRevenire la sursa SVG orginală?",
"QignoreSourceChanges":"Ignoraţi schimbarile la sursa SVG?",
"featNotSupported":"Funcţie neimplementată",
"enterNewImgURL":"Introduceţi noul URL pentru Imagine",
"invalidAttrValGiven": "Valoarea data nu este validă",
"noContentToFitTo": "Fara conţinut de referinţă",
"dupeLayerName": "Deja exista un strat numit asa!",
"enterUniqueLayerName": "Rog introduceţi un nume unic",
"enterNewLayerName": "Rog introduceţi un nume pentru strat",
"layerHasThatName": "Statul deja are acest nume",
"QmoveElemsToLayer": "Mutaţi elementele selectate pe stratul '%s'?",
"QwantToClear": "Doriti să ştergeţi desenul?\nAceasta va sterge si posibilitatea de anulare!",
"QwantToOpen": "Doriti sa deschideţi un nou fişier?\nAceasta va şterge istoricul!",
"QerrorsRevertToSource": "Sunt erori de parsing in sursa SVG.\nRevenire la sursa SVG orginală?",
"QignoreSourceChanges": "Ignoraţi schimbarile la sursa SVG?",
"featNotSupported": "Funcţie neimplementată",
"enterNewImgURL": "Introduceţi noul URL pentru Imagine",
"defsFailOnSave": "NOTE: Din cauza unei erori in browserul dv., aceasta imagine poate apare gresit (fara gradiente sau elemente). Însă va apare corect dupa salvare.",
"loadingImage":"Imaginea se incarcă, va rugam asteptaţi...",
"loadingImage": "Imaginea se incarcă, va rugam asteptaţi...",
"saveFromBrowser": "Selectează \"Salvează ca si...\" in browserul dv. pt. a salva aceasta imagine ca si fisier %s.",
"noteTheseIssues": "De asemenea remarcati urmatoarele probleme: ",
"unsavedChanges": "Sunt schimbări nesalvate.",
@ -233,10 +234,10 @@ svgEditor.readLang({
"retrieving": "În preluare \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "ru",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Сохранить",
"cancel": "Отменить",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Слой",
"layer": "Слой",
"layers": "Layers",
"del": "Удалить слой",
"move_down": "Опустить слой",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Некорректное значение аргумента",
"noContentToFitTo":"Нет содержания, по которому выровнять.",
"dupeLayerName":"Слой с этим именем уже существует.",
"enterUniqueLayerName":"Пожалуйста, введите имя для слоя.",
"enterNewLayerName":"Пожалуйста, введите новое имя.",
"layerHasThatName":"Слой уже называется этим именем.",
"QmoveElemsToLayer":"Переместить выделенные элементы на слой '%s'?",
"QwantToClear":"Вы хотите очистить?\nИстория действий будет забыта!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"Была проблема при парсинге вашего SVG исходного кода.\nЗаменить его предыдущим SVG кодом?",
"QignoreSourceChanges":"Забыть без сохранения?",
"featNotSupported":"Возможность не реализована",
"enterNewImgURL":"Введите новый URL изображения",
"invalidAttrValGiven": "Некорректное значение аргумента",
"noContentToFitTo": "Нет содержания, по которому выровнять.",
"dupeLayerName": "Слой с этим именем уже существует.",
"enterUniqueLayerName": "Пожалуйста, введите имя для слоя.",
"enterNewLayerName": "Пожалуйста, введите новое имя.",
"layerHasThatName": "Слой уже называется этим именем.",
"QmoveElemsToLayer": "Переместить выделенные элементы на слой '%s'?",
"QwantToClear": "Вы хотите очистить?\nИстория действий будет забыта!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "Была проблема при парсинге вашего SVG исходного кода.\nЗаменить его предыдущим SVG кодом?",
"QignoreSourceChanges": "Забыть без сохранения?",
"featNotSupported": "Возможность не реализована",
"enterNewImgURL": "Введите новый 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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "sk",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Uložiť",
"cancel": "Zrušiť",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Otvoriť ako nový dokument"
},
notification: {
"invalidAttrValGiven":"Neplatná hodnota",
"noContentToFitTo":"Vyberte oblasť na prispôsobenie",
"dupeLayerName":"Vrstva s daným názvom už existuje!",
"enterUniqueLayerName":"Zadajte jedinečný názov vrstvy",
"enterNewLayerName":"Zadajte názov vrstvy",
"layerHasThatName":"Vrstva už má zadaný tento názov",
"QmoveElemsToLayer":"Presunúť elementy do vrstvy '%s'?",
"QwantToClear":"Naozaj chcete vymazať kresbu?\n(História bude taktiež vymazaná!)!",
"QwantToOpen":"Chcete otvoriť nový súbor?\nTo však tiež vymaže Vašu UNDO knižnicu!",
"QerrorsRevertToSource":"Chyba pri načítaní SVG dokumentu.\nVrátiť povodný SVG dokument?",
"QignoreSourceChanges":"Ignorovať zmeny v SVG dokumente?",
"featNotSupported":"Vlastnosť nie je podporovaná",
"enterNewImgURL":"Zadajte nové URL obrázka",
"invalidAttrValGiven": "Neplatná hodnota",
"noContentToFitTo": "Vyberte oblasť na prispôsobenie",
"dupeLayerName": "Vrstva s daným názvom už existuje!",
"enterUniqueLayerName": "Zadajte jedinečný názov vrstvy",
"enterNewLayerName": "Zadajte názov vrstvy",
"layerHasThatName": "Vrstva už má zadaný tento názov",
"QmoveElemsToLayer": "Presunúť elementy do vrstvy '%s'?",
"QwantToClear": "Naozaj chcete vymazať kresbu?\n(História bude taktiež vymazaná!)!",
"QwantToOpen": "Chcete otvoriť nový súbor?\nTo však tiež vymaže Vašu UNDO knižnicu!",
"QerrorsRevertToSource": "Chyba pri načítaní SVG dokumentu.\nVrátiť povodný SVG dokument?",
"QignoreSourceChanges": "Ignorovať zmeny v SVG dokumente?",
"featNotSupported": "Vlastnosť nie je podporovaná",
"enterNewImgURL": "Zadajte nové URL obrázka",
"defsFailOnSave": "POZNÁMKA: Kvôli chybe v prehliadači sa tento obrázok môže zobraziť nesprávne (napr. chýbajúce prechody či elementy). Po uložení sa zobrazí správne.",
"loadingImage":"Nahrávam obrázok, prosím čakajte ...",
"loadingImage": "Nahrávam obrázok, prosím čakajte ...",
"saveFromBrowser": "Vyberte \"Uložiť ako ...\" vo vašom prehliadači na uloženie tohoto obrázka do súboru %s.",
"noteTheseIssues": "Môžu sa vyskytnúť nasledujúce problémy: ",
"unsavedChanges": "Sú tu neuložené zmeny.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Načítavanie \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "sl",
dir : "ltr",
dir: "ltr",
common: {
"ok": "V redu",
"cancel": "Prekliči",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Postavi v ozadje"
},
layers: {
"layer":"Sloj",
"layer": "Sloj",
"layers": "Sloji",
"del": "Izbriši sloj",
"move_down": "Premakni navzdol",
@ -209,21 +210,21 @@ svgEditor.readLang({
"open": "Odpri kot nov dokument"
},
notification: {
"invalidAttrValGiven":"Napačna vrednost!",
"noContentToFitTo":"Ni vsebine za prilagajanje",
"dupeLayerName":"Sloj s tem imenom že obstajal!",
"enterUniqueLayerName":"Vnesite edinstveno ime sloja",
"enterNewLayerName":"Vnesite ime novega sloja",
"layerHasThatName":"Sloje že ima to ime",
"QmoveElemsToLayer":"Premaknem izbrane elemente v sloj '%s'?",
"QwantToClear":"Ali želite počistiti risbo?\nTo bo izbrisalo tudi zgodovino korakov (ni mogoče razveljaviti)!",
"QwantToOpen":"Ali želite odpreti novo datoteko?\nTo bo izbrisalo tudi zgodovino korakov (ni mogoče razveljaviti)!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignoriram spremembe, narejene v SVG kodi?",
"featNotSupported":"Ni podprto",
"enterNewImgURL":"Vnesite nov URL slike",
"invalidAttrValGiven": "Napačna vrednost!",
"noContentToFitTo": "Ni vsebine za prilagajanje",
"dupeLayerName": "Sloj s tem imenom že obstajal!",
"enterUniqueLayerName": "Vnesite edinstveno ime sloja",
"enterNewLayerName": "Vnesite ime novega sloja",
"layerHasThatName": "Sloje že ima to ime",
"QmoveElemsToLayer": "Premaknem izbrane elemente v sloj '%s'?",
"QwantToClear": "Ali želite počistiti risbo?\nTo bo izbrisalo tudi zgodovino korakov (ni mogoče razveljaviti)!",
"QwantToOpen": "Ali želite odpreti novo datoteko?\nTo bo izbrisalo tudi zgodovino korakov (ni mogoče razveljaviti)!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignoriram spremembe, narejene v SVG kodi?",
"featNotSupported": "Ni podprto",
"enterNewImgURL": "Vnesite nov URL slike",
"defsFailOnSave": "OPOMBA: Zaradi napake vašega brskalnika obstaja možnost, da ta slika ni prikazan pravilno (manjkajo določeni elementi ali gradient). Vseeno bo prikaz pravilen, ko bo slika enkrat shranjena.",
"loadingImage":"Nalagam sliko, prosimo, počakajte ...",
"loadingImage": "Nalagam sliko, prosimo, počakajte ...",
"saveFromBrowser": "Izberite \"Shrani kot ...\" v brskalniku, če želite shraniti kot %s.",
"noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "Obstajajo neshranjene spremembe.",
@ -233,10 +234,10 @@ svgEditor.readLang({
"retrieving": "Pridobivanje \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "sq",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Ruaj",
"cancel": "Anulo",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Move Down Layer",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "sr",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Сачувати",
"cancel": "Откажи",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Избриши слој",
"move_down": "Помери слој доле",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "sv",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Spara",
"cancel": "Avbryt",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Radera Layer",
"move_down": "Flytta Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "sw",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Okoa",
"cancel": "Cancel",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Move Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "test",
dir : "ltr",
dir: "ltr",
common: {
"ok": "OK",
"cancel": "Cancel",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Move Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer \"%s\"?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer \"%s\"?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "th",
dir : "ltr",
dir: "ltr",
common: {
"ok": "บันทึก",
"cancel": "ยกเลิก",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "ย้าย Layer ลง",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "tl",
dir : "ltr",
dir: "ltr",
common: {
"ok": "I-save",
"cancel": "I-cancel",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Tanggalin Layer",
"move_down": "Ilipat Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "tr",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Kaydetmek",
"cancel": "Iptal",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Delete Layer",
"move_down": "Katman Aşağı Taşı",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "uk",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Зберегти",
"cancel": "Скасування",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Видалити шар",
"move_down": "Перемістити шар на",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "vi",
dir : "ltr",
dir: "ltr",
common: {
"ok": "Lưu",
"cancel": "Hủy",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "Xoá Layer",
"move_down": "Move Layer Down",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "yi",
dir : "ltr",
dir: "ltr",
common: {
"ok": "היט",
"cancel": "באָטל מאַכן",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "ויסמעקן לייַער",
"move_down": "קער לייַער דאָוון",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "zh-CN",
dir : "ltr",
dir: "ltr",
common: {
"ok": "保存",
"cancel": "取消",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "移至底部"
},
layers: {
"layer":"图层",
"layer": "图层",
"layers": "图层",
"del": "删除图层",
"move_down": "向下移动图层",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "打开一个新文档"
},
notification: {
"invalidAttrValGiven":"无效的参数",
"noContentToFitTo":"无可适应的内容",
"dupeLayerName":"已存在同名的图层!",
"enterUniqueLayerName":"请输入一个唯一的图层名称",
"enterNewLayerName":"请输入新的图层名称",
"layerHasThatName":"图层已经采用了该名称",
"QmoveElemsToLayer":"您确定移动所选元素到图层'%s'吗?",
"QwantToClear":"您希望清除当前绘制的所有图形吗?\n该操作将无法撤消!",
"QwantToOpen":"您希望打开一个新文档吗?\n该操作将无法撤消!",
"QerrorsRevertToSource":"SVG文件解析错误.\n是否还原到最初的SVG文件?",
"QignoreSourceChanges":"忽略对SVG文件所作的更改么?",
"featNotSupported":"不支持该功能",
"enterNewImgURL":"请输入新图像的URLL",
"invalidAttrValGiven": "无效的参数",
"noContentToFitTo": "无可适应的内容",
"dupeLayerName": "已存在同名的图层!",
"enterUniqueLayerName": "请输入一个唯一的图层名称",
"enterNewLayerName": "请输入新的图层名称",
"layerHasThatName": "图层已经采用了该名称",
"QmoveElemsToLayer": "您确定移动所选元素到图层'%s'吗?",
"QwantToClear": "您希望清除当前绘制的所有图形吗?\n该操作将无法撤消!",
"QwantToOpen": "您希望打开一个新文档吗?\n该操作将无法撤消!",
"QerrorsRevertToSource": "SVG文件解析错误.\n是否还原到最初的SVG文件?",
"QignoreSourceChanges": "忽略对SVG文件所作的更改么?",
"featNotSupported": "不支持该功能",
"enterNewImgURL": "请输入新图像的URLL",
"defsFailOnSave": "注意: 由于您所使用的浏览器存在缺陷, 该图像无法正确显示 (不支持渐变或相关元素). 修复该缺陷后可正确显示.",
"loadingImage":"正在加载图像, 请稍候...",
"loadingImage": "正在加载图像, 请稍候...",
"saveFromBrowser": "选择浏览器中的 \"另存为...\" 将该图像保存为 %s 文件.",
"noteTheseIssues": "同时注意以下几点: ",
"unsavedChanges": "存在未保存的修改.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "检索 \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "zh-HK",
dir : "ltr",
dir: "ltr",
common: {
"ok": "保存",
"cancel": "取消",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"Layer",
"layer": "Layer",
"layers": "Layers",
"del": "删除层",
"move_down": "层向下移动",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"Invalid value given",
"noContentToFitTo":"No content to fit to",
"dupeLayerName":"There is already a layer named that!",
"enterUniqueLayerName":"Please enter a unique layer name",
"enterNewLayerName":"Please enter the new layer name",
"layerHasThatName":"Layer already has that name",
"QmoveElemsToLayer":"Move selected elements to layer '%s'?",
"QwantToClear":"Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges":"Ignore changes made to SVG source?",
"featNotSupported":"Feature not supported",
"enterNewImgURL":"Enter the new image URL",
"invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,7 +1,8 @@
/*globals svgEditor */
/* eslint-disable quotes */
/* globals svgEditor */
svgEditor.readLang({
lang: "zh-TW",
dir : "ltr",
dir: "ltr",
common: {
"ok": "保存",
"cancel": "取消",
@ -147,7 +148,7 @@ svgEditor.readLang({
"move_back": "Send to Back"
},
layers: {
"layer":"圖層",
"layer": "圖層",
"layers": "Layers",
"del": "刪除圖層",
"move_down": "向下移動圖層",
@ -210,21 +211,21 @@ svgEditor.readLang({
"open": "Open as new document"
},
notification: {
"invalidAttrValGiven":"數值給定錯誤",
"noContentToFitTo":"找不到符合的內容",
"dupeLayerName":"喔不!已經有另一個同樣名稱的圖層了!",
"enterUniqueLayerName":"請輸入一個名稱不重複的",
"enterNewLayerName":"請輸入新圖層的名稱",
"layerHasThatName":"圖層本來就是這個名稱(抱怨)",
"QmoveElemsToLayer":"要搬移所選取的物件到'%s'層嗎?",
"QwantToClear":"要清空圖像嗎?\n這會順便清空你的回復紀錄",
"QwantToOpen":"Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource":"SVG原始碼解析錯誤\n要回復到原本的SVG原始碼嗎",
"QignoreSourceChanges":"要忽略對SVG原始碼的更動嗎",
"featNotSupported":"未提供此功能",
"enterNewImgURL":"輸入新的圖片網址",
"invalidAttrValGiven": "數值給定錯誤",
"noContentToFitTo": "找不到符合的內容",
"dupeLayerName": "喔不!已經有另一個同樣名稱的圖層了!",
"enterUniqueLayerName": "請輸入一個名稱不重複的",
"enterNewLayerName": "請輸入新圖層的名稱",
"layerHasThatName": "圖層本來就是這個名稱(抱怨)",
"QmoveElemsToLayer": "要搬移所選取的物件到'%s'層嗎?",
"QwantToClear": "要清空圖像嗎?\n這會順便清空你的回復紀錄",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "SVG原始碼解析錯誤\n要回復到原本的SVG原始碼嗎",
"QignoreSourceChanges": "要忽略對SVG原始碼的更動嗎",
"featNotSupported": "未提供此功能",
"enterNewImgURL": "輸入新的圖片網址",
"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...",
"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: ",
"unsavedChanges": "There are unsaved changes.",
@ -234,10 +235,10 @@ svgEditor.readLang({
"retrieving": "Retrieving \"%s\"..."
},
confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor "+
"preferences and SVG content locally on your machine so you do not "+
"need to add these back each time you load SVG-Edit. If, for privacy "+
"reasons, you do not wish to store this information on your machine, "+
message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " +
"need to add these back each time you load SVG-Edit. If, for privacy " +
"reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally",

View File

@ -1,5 +1,5 @@
/*globals jQuery*/
/*jslint vars: true, eqeq: true, forin: true*/
/* eslint-disable no-var */
/* globals jQuery */
/*
* Localizing script for SVG-edit UI
*
@ -15,314 +15,308 @@
// 2) svgcanvas.js
// 3) svg-editor.js
var svgEditor = (function($, editor) {'use strict';
var svgEditor = (function ($, editor) {
'use strict';
var lang_param;
var langParam;
function setStrings(type, obj, ids) {
// Root element to look for element from
var i, sel, val, $elem, elem, node, parent = $('#svg_editor').parent();
for (sel in obj) {
val = obj[sel];
if (!val) {console.log(sel);}
function setStrings (type, obj, ids) {
// Root element to look for element from
var i, sel, val, $elem, elem, node, parent = $('#svg_editor').parent();
for (sel in obj) {
val = obj[sel];
if (!val) { console.log(sel); }
if (ids) {sel = '#' + sel;}
$elem = parent.find(sel);
if ($elem.length) {
elem = parent.find(sel)[0];
if (ids) { sel = '#' + sel; }
$elem = parent.find(sel);
if ($elem.length) {
elem = parent.find(sel)[0];
switch ( type ) {
case 'content':
for (i = 0; i < elem.childNodes.length; i++) {
node = elem.childNodes[i];
if (node.nodeType === 3 && node.textContent.replace(/\s/g,'')) {
node.textContent = val;
break;
}
}
break;
case 'title':
elem.title = val;
switch (type) {
case 'content':
for (i = 0; i < elem.childNodes.length; i++) {
node = elem.childNodes[i];
if (node.nodeType === 3 && node.textContent.replace(/\s/g, '')) {
node.textContent = val;
break;
}
}
break;
} else {
console.log('Missing: ' + sel);
case 'title':
elem.title = val;
break;
}
} else {
console.log('Missing: ' + sel);
}
}
}
editor.readLang = function(langData) {
var more = editor.canvas.runExtensions('addlangData', lang_param, true);
$.each(more, function(i, m) {
if (m.data) {
langData = $.merge(langData, m.data);
editor.readLang = function (langData) {
var more = editor.canvas.runExtensions('addlangData', langParam, true);
$.each(more, function (i, m) {
if (m.data) {
langData = $.merge(langData, m.data);
}
});
// Old locale file, do nothing for now.
if (!langData.tools) { return; }
var tools = langData.tools,
// misc = langData.misc,
properties = langData.properties,
config = langData.config,
layers = langData.layers,
common = langData.common,
ui = langData.ui;
setStrings('content', {
// copyrightLabel: misc.powered_by, // Currently commented out in svg-editor.html
curve_segments: properties.curve_segments,
fitToContent: tools.fitToContent,
fit_to_all: tools.fit_to_all,
fit_to_canvas: tools.fit_to_canvas,
fit_to_layer_content: tools.fit_to_layer_content,
fit_to_sel: tools.fit_to_sel,
icon_large: config.icon_large,
icon_medium: config.icon_medium,
icon_small: config.icon_small,
icon_xlarge: config.icon_xlarge,
image_opt_embed: config.image_opt_embed,
image_opt_ref: config.image_opt_ref,
includedImages: config.included_images,
largest_object: tools.largest_object,
layersLabel: layers.layers,
page: tools.page,
relativeToLabel: tools.relativeTo,
selLayerLabel: layers.move_elems_to,
selectedPredefined: config.select_predefined,
selected_objects: tools.selected_objects,
smallest_object: tools.smallest_object,
straight_segments: properties.straight_segments,
svginfo_bg_url: config.editor_img_url + ':',
svginfo_bg_note: config.editor_bg_note,
svginfo_change_background: config.background,
svginfo_dim: config.doc_dims,
svginfo_editor_prefs: config.editor_prefs,
svginfo_height: common.height,
svginfo_icons: config.icon_size,
svginfo_image_props: config.image_props,
svginfo_lang: config.language,
svginfo_title: config.doc_title,
svginfo_width: common.width,
tool_docprops_cancel: common.cancel,
tool_docprops_save: common.ok,
tool_source_cancel: common.cancel,
tool_source_save: common.ok,
tool_prefs_cancel: common.cancel,
tool_prefs_save: common.ok,
sidepanel_handle: layers.layers.split('').join(' '),
tool_clear: tools.new_doc,
tool_docprops: tools.docprops,
tool_export: tools.export_img,
tool_import: tools.import_doc,
tool_imagelib: tools.imagelib,
tool_open: tools.open_doc,
tool_save: tools.save_doc,
svginfo_units_rulers: config.units_and_rulers,
svginfo_rulers_onoff: config.show_rulers,
svginfo_unit: config.base_unit,
svginfo_grid_settings: config.grid,
svginfo_snap_onoff: config.snapping_onoff,
svginfo_snap_step: config.snapping_stepsize,
svginfo_grid_color: config.grid_color
}, true);
// Shape categories
var o, cats = {};
for (o in langData.shape_cats) {
cats['#shape_cats [data-cat="' + o + '"]'] = langData.shape_cats[o];
}
// TODO: Find way to make this run after shapelib ext has loaded
setTimeout(function () {
setStrings('content', cats);
}, 2000);
// Context menus
var opts = {};
$.each(['cut', 'copy', 'paste', 'paste_in_place', 'delete', 'group', 'ungroup', 'move_front', 'move_up', 'move_down', 'move_back'], function () {
opts['#cmenu_canvas a[href="#' + this + '"]'] = tools[this];
});
$.each(['dupe', 'merge_down', 'merge_all'], function () {
opts['#cmenu_layers a[href="#' + this + '"]'] = layers[this];
});
opts['#cmenu_layers a[href="#delete"]'] = layers.del;
setStrings('content', opts);
setStrings('title', {
align_relative_to: tools.align_relative_to,
circle_cx: properties.circle_cx,
circle_cy: properties.circle_cy,
circle_r: properties.circle_r,
cornerRadiusLabel: properties.corner_radius,
ellipse_cx: properties.ellipse_cx,
ellipse_cy: properties.ellipse_cy,
ellipse_rx: properties.ellipse_rx,
ellipse_ry: properties.ellipse_ry,
fill_color: properties.fill_color,
font_family: properties.font_family,
idLabel: properties.id,
image_height: properties.image_height,
image_url: properties.image_url,
image_width: properties.image_width,
layer_delete: layers.del,
layer_down: layers.move_down,
layer_new: layers['new'],
layer_rename: layers.rename,
layer_moreopts: common.more_opts,
layer_up: layers.move_up,
line_x1: properties.line_x1,
line_x2: properties.line_x2,
line_y1: properties.line_y1,
line_y2: properties.line_y2,
linecap_butt: properties.linecap_butt,
linecap_round: properties.linecap_round,
linecap_square: properties.linecap_square,
linejoin_bevel: properties.linejoin_bevel,
linejoin_miter: properties.linejoin_miter,
linejoin_round: properties.linejoin_round,
main_icon: tools.main_menu,
mode_connect: tools.mode_connect,
tools_shapelib_show: tools.mode_shapelib,
palette: ui.palette_info,
zoom_panel: ui.zoom_level,
path_node_x: properties.node_x,
path_node_y: properties.node_y,
rect_height_tool: properties.rect_height,
rect_width_tool: properties.rect_width,
seg_type: properties.seg_type,
selLayerNames: layers.move_selected,
selected_x: properties.pos_x,
selected_y: properties.pos_y,
stroke_color: properties.stroke_color,
stroke_style: properties.stroke_style,
stroke_width: properties.stroke_width,
svginfo_title: config.doc_title,
text: properties.text_contents,
toggle_stroke_tools: ui.toggle_stroke_tools,
tool_add_subpath: tools.add_subpath,
tool_alignbottom: tools.align_bottom,
tool_aligncenter: tools.align_center,
tool_alignleft: tools.align_left,
tool_alignmiddle: tools.align_middle,
tool_alignright: tools.align_right,
tool_aligntop: tools.align_top,
tool_angle: properties.angle,
tool_blur: properties.blur,
tool_bold: properties.bold,
tool_circle: tools.mode_circle,
tool_clone: tools.clone,
tool_clone_multi: tools.clone,
tool_delete: tools.del,
tool_delete_multi: tools.del,
tool_ellipse: tools.mode_ellipse,
tool_eyedropper: tools.mode_eyedropper,
tool_fhellipse: tools.mode_fhellipse,
tool_fhpath: tools.mode_fhpath,
tool_fhrect: tools.mode_fhrect,
tool_font_size: properties.font_size,
tool_group_elements: tools.group_elements,
tool_make_link: tools.make_link,
tool_link_url: tools.set_link_url,
tool_image: tools.mode_image,
tool_italic: properties.italic,
tool_line: tools.mode_line,
tool_move_bottom: tools.move_bottom,
tool_move_top: tools.move_top,
tool_node_clone: tools.node_clone,
tool_node_delete: tools.node_delete,
tool_node_link: tools.node_link,
tool_opacity: properties.opacity,
tool_openclose_path: tools.openclose_path,
tool_path: tools.mode_path,
tool_position: tools.align_to_page,
tool_rect: tools.mode_rect,
tool_redo: tools.redo,
tool_reorient: tools.reorient_path,
tool_select: tools.mode_select,
tool_source: tools.source_save,
tool_square: tools.mode_square,
tool_text: tools.mode_text,
tool_topath: tools.to_path,
tool_undo: tools.undo,
tool_ungroup: tools.ungroup,
tool_wireframe: tools.wireframe_mode,
view_grid: tools.toggle_grid,
tool_zoom: tools.mode_zoom,
url_notice: tools.no_embed
}, true);
editor.setLang(langParam, langData);
};
editor.putLocale = function (givenParam, goodLangs) {
if (givenParam) {
langParam = givenParam;
} else {
langParam = $.pref('lang');
if (!langParam) {
if (navigator.userLanguage) { // Explorer
langParam = navigator.userLanguage;
} else if (navigator.language) { // FF, Opera, ...
langParam = navigator.language;
}
if (langParam == null) { // Todo: Would cause problems if uiStrings removed; remove this?
return;
}
});
// Old locale file, do nothing for now.
if (!langData.tools) {return;}
var tools = langData.tools,
misc = langData.misc,
properties = langData.properties,
config = langData.config,
layers = langData.layers,
common = langData.common,
ui = langData.ui;
setStrings('content', {
// copyrightLabel: misc.powered_by, // Currently commented out in svg-editor.html
curve_segments: properties.curve_segments,
fitToContent: tools.fitToContent,
fit_to_all: tools.fit_to_all,
fit_to_canvas: tools.fit_to_canvas,
fit_to_layer_content: tools.fit_to_layer_content,
fit_to_sel: tools.fit_to_sel,
icon_large: config.icon_large,
icon_medium: config.icon_medium,
icon_small: config.icon_small,
icon_xlarge: config.icon_xlarge,
image_opt_embed: config.image_opt_embed,
image_opt_ref: config.image_opt_ref,
includedImages: config.included_images,
largest_object: tools.largest_object,
layersLabel: layers.layers,
page: tools.page,
relativeToLabel: tools.relativeTo,
selLayerLabel: layers.move_elems_to,
selectedPredefined: config.select_predefined,
selected_objects: tools.selected_objects,
smallest_object: tools.smallest_object,
straight_segments: properties.straight_segments,
svginfo_bg_url: config.editor_img_url + ":",
svginfo_bg_note: config.editor_bg_note,
svginfo_change_background: config.background,
svginfo_dim: config.doc_dims,
svginfo_editor_prefs: config.editor_prefs,
svginfo_height: common.height,
svginfo_icons: config.icon_size,
svginfo_image_props: config.image_props,
svginfo_lang: config.language,
svginfo_title: config.doc_title,
svginfo_width: common.width,
tool_docprops_cancel: common.cancel,
tool_docprops_save: common.ok,
tool_source_cancel: common.cancel,
tool_source_save: common.ok,
tool_prefs_cancel: common.cancel,
tool_prefs_save: common.ok,
sidepanel_handle: layers.layers.split('').join(' '),
tool_clear: tools.new_doc,
tool_docprops: tools.docprops,
tool_export: tools.export_img,
tool_import: tools.import_doc,
tool_imagelib: tools.imagelib,
tool_open: tools.open_doc,
tool_save: tools.save_doc,
svginfo_units_rulers: config.units_and_rulers,
svginfo_rulers_onoff: config.show_rulers,
svginfo_unit: config.base_unit,
svginfo_grid_settings: config.grid,
svginfo_snap_onoff: config.snapping_onoff,
svginfo_snap_step: config.snapping_stepsize,
svginfo_grid_color: config.grid_color
}, true);
// Shape categories
var o, cats = {};
for (o in langData.shape_cats) {
cats['#shape_cats [data-cat="' + o + '"]'] = langData.shape_cats[o];
}
// TODO: Find way to make this run after shapelib ext has loaded
setTimeout(function() {
setStrings('content', cats);
}, 2000);
// Context menus
var opts = {};
$.each(['cut','copy','paste', 'paste_in_place', 'delete', 'group', 'ungroup', 'move_front', 'move_up', 'move_down', 'move_back'], function() {
opts['#cmenu_canvas a[href="#' + this + '"]'] = tools[this];
});
$.each(['dupe','merge_down', 'merge_all'], function() {
opts['#cmenu_layers a[href="#' + this + '"]'] = layers[this];
});
opts['#cmenu_layers a[href="#delete"]'] = layers.del;
setStrings('content', opts);
setStrings('title', {
align_relative_to: tools.align_relative_to,
circle_cx: properties.circle_cx,
circle_cy: properties.circle_cy,
circle_r: properties.circle_r,
cornerRadiusLabel: properties.corner_radius,
ellipse_cx: properties.ellipse_cx,
ellipse_cy: properties.ellipse_cy,
ellipse_rx: properties.ellipse_rx,
ellipse_ry: properties.ellipse_ry,
fill_color: properties.fill_color,
font_family: properties.font_family,
idLabel: properties.id,
image_height: properties.image_height,
image_url: properties.image_url,
image_width: properties.image_width,
layer_delete: layers.del,
layer_down: layers.move_down,
layer_new: layers['new'],
layer_rename: layers.rename,
layer_moreopts: common.more_opts,
layer_up: layers.move_up,
line_x1: properties.line_x1,
line_x2: properties.line_x2,
line_y1: properties.line_y1,
line_y2: properties.line_y2,
linecap_butt: properties.linecap_butt,
linecap_round: properties.linecap_round,
linecap_square: properties.linecap_square,
linejoin_bevel: properties.linejoin_bevel,
linejoin_miter: properties.linejoin_miter,
linejoin_round: properties.linejoin_round,
main_icon: tools.main_menu,
mode_connect: tools.mode_connect,
tools_shapelib_show: tools.mode_shapelib,
palette: ui.palette_info,
zoom_panel: ui.zoom_level,
path_node_x: properties.node_x,
path_node_y: properties.node_y,
rect_height_tool: properties.rect_height,
rect_width_tool: properties.rect_width,
seg_type: properties.seg_type,
selLayerNames: layers.move_selected,
selected_x: properties.pos_x,
selected_y: properties.pos_y,
stroke_color: properties.stroke_color,
stroke_style: properties.stroke_style,
stroke_width: properties.stroke_width,
svginfo_title: config.doc_title,
text: properties.text_contents,
toggle_stroke_tools: ui.toggle_stroke_tools,
tool_add_subpath: tools.add_subpath,
tool_alignbottom: tools.align_bottom,
tool_aligncenter: tools.align_center,
tool_alignleft: tools.align_left,
tool_alignmiddle: tools.align_middle,
tool_alignright: tools.align_right,
tool_aligntop: tools.align_top,
tool_angle: properties.angle,
tool_blur: properties.blur,
tool_bold: properties.bold,
tool_circle: tools.mode_circle,
tool_clone: tools.clone,
tool_clone_multi: tools.clone,
tool_delete: tools.del,
tool_delete_multi: tools.del,
tool_ellipse: tools.mode_ellipse,
tool_eyedropper: tools.mode_eyedropper,
tool_fhellipse: tools.mode_fhellipse,
tool_fhpath: tools.mode_fhpath,
tool_fhrect: tools.mode_fhrect,
tool_font_size: properties.font_size,
tool_group_elements: tools.group_elements,
tool_make_link: tools.make_link,
tool_link_url: tools.set_link_url,
tool_image: tools.mode_image,
tool_italic: properties.italic,
tool_line: tools.mode_line,
tool_move_bottom: tools.move_bottom,
tool_move_top: tools.move_top,
tool_node_clone: tools.node_clone,
tool_node_delete: tools.node_delete,
tool_node_link: tools.node_link,
tool_opacity: properties.opacity,
tool_openclose_path: tools.openclose_path,
tool_path: tools.mode_path,
tool_position: tools.align_to_page,
tool_rect: tools.mode_rect,
tool_redo: tools.redo,
tool_reorient: tools.reorient_path,
tool_select: tools.mode_select,
tool_source: tools.source_save,
tool_square: tools.mode_square,
tool_text: tools.mode_text,
tool_topath: tools.to_path,
tool_undo: tools.undo,
tool_ungroup: tools.ungroup,
tool_wireframe: tools.wireframe_mode,
view_grid: tools.toggle_grid,
tool_zoom: tools.mode_zoom,
url_notice: tools.no_embed
}, true);
editor.setLang(lang_param, langData);
};
editor.putLocale = function (given_param, good_langs) {
if (given_param) {
lang_param = given_param;
}
else {
lang_param = $.pref('lang');
if (!lang_param) {
if (navigator.userLanguage) { // Explorer
lang_param = navigator.userLanguage;
}
else if (navigator.language) { // FF, Opera, ...
lang_param = navigator.language;
}
if (lang_param == null) { // Todo: Would cause problems if uiStrings removed; remove this?
return;
}
}
console.log('Lang: ' + lang_param);
// Set to English if language is not in list of good langs
if ($.inArray(lang_param, good_langs) === -1 && lang_param !== 'test') {
lang_param = "en";
}
// don't bother on first run if language is English
// The following line prevents setLang from running
// extensions which depend on updated uiStrings,
// so commenting it out.
// if (lang_param.indexOf("en") === 0) {return;}
console.log('Lang: ' + langParam);
// Set to English if language is not in list of good langs
if ($.inArray(langParam, goodLangs) === -1 && langParam !== 'test') {
langParam = 'en';
}
var conf = editor.curConfig;
// don't bother on first run if language is English
// The following line prevents setLang from running
// extensions which depend on updated uiStrings,
// so commenting it out.
// if (langParam.indexOf("en") === 0) {return;}
}
var url = conf.langPath + "lang." + lang_param + ".js";
var conf = editor.curConfig;
$.getScript(url, function(d) {
// Fails locally in Chrome 5+
if (!d) {
var s = document.createElement('script');
s.src = url;
document.querySelector('head').appendChild(s);
}
});
var url = conf.langPath + 'lang.' + langParam + '.js';
};
$.getScript(url, function (d) {
// Fails locally in Chrome 5+
if (!d) {
var s = document.createElement('script');
s.src = url;
document.querySelector('head').appendChild(s);
}
});
};
return editor;
}(jQuery, svgEditor));
return editor;
}(jQuery, svgEditor)); // eslint-disable-line no-use-before-define

1533
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -10,6 +10,7 @@
},
"engines": {},
"scripts": {
"eslint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
@ -35,5 +36,13 @@
"url": "https://github.com/SVG-Edit/svgedit/issues"
},
"homepage": "https://github.com/SVG-Edit/svgedit#readme",
"dependencies": {}
"dependencies": {},
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.1.0"
}
}