- Complete conversion to 2-spaces, fixing issue #37 (also removed some extra/misplaced tabs/spaces in process)

This commit is contained in:
Brett Zamir
2018-05-18 14:23:36 +08:00
parent f21d41a231
commit 4bfbaacb5e
72 changed files with 22085 additions and 22085 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6,286 +6,286 @@
* @license Use it if you like it * @license Use it if you like it
*/ */
function RGBColor (colorString) { // eslint-disable-line no-unused-vars function RGBColor (colorString) { // eslint-disable-line no-unused-vars
'use strict'; 'use strict';
this.ok = false; this.ok = false;
// strip any leading # // strip any leading #
if (colorString.charAt(0) === '#') { // remove # if any if (colorString.charAt(0) === '#') { // remove # if any
colorString = colorString.substr(1, 6); colorString = colorString.substr(1, 6);
} }
colorString = colorString.replace(/ /g, ''); colorString = colorString.replace(/ /g, '');
colorString = colorString.toLowerCase(); colorString = colorString.toLowerCase();
// before getting into regexps, try simple matches // before getting into regexps, try simple matches
// and overwrite the input // and overwrite the input
var simpleColors = { var simpleColors = {
aliceblue: 'f0f8ff', aliceblue: 'f0f8ff',
antiquewhite: 'faebd7', antiquewhite: 'faebd7',
aqua: '00ffff', aqua: '00ffff',
aquamarine: '7fffd4', aquamarine: '7fffd4',
azure: 'f0ffff', azure: 'f0ffff',
beige: 'f5f5dc', beige: 'f5f5dc',
bisque: 'ffe4c4', bisque: 'ffe4c4',
black: '000000', black: '000000',
blanchedalmond: 'ffebcd', blanchedalmond: 'ffebcd',
blue: '0000ff', blue: '0000ff',
blueviolet: '8a2be2', blueviolet: '8a2be2',
brown: 'a52a2a', brown: 'a52a2a',
burlywood: 'deb887', burlywood: 'deb887',
cadetblue: '5f9ea0', cadetblue: '5f9ea0',
chartreuse: '7fff00', chartreuse: '7fff00',
chocolate: 'd2691e', chocolate: 'd2691e',
coral: 'ff7f50', coral: 'ff7f50',
cornflowerblue: '6495ed', cornflowerblue: '6495ed',
cornsilk: 'fff8dc', cornsilk: 'fff8dc',
crimson: 'dc143c', crimson: 'dc143c',
cyan: '00ffff', cyan: '00ffff',
darkblue: '00008b', darkblue: '00008b',
darkcyan: '008b8b', darkcyan: '008b8b',
darkgoldenrod: 'b8860b', darkgoldenrod: 'b8860b',
darkgray: 'a9a9a9', darkgray: 'a9a9a9',
darkgreen: '006400', darkgreen: '006400',
darkkhaki: 'bdb76b', darkkhaki: 'bdb76b',
darkmagenta: '8b008b', darkmagenta: '8b008b',
darkolivegreen: '556b2f', darkolivegreen: '556b2f',
darkorange: 'ff8c00', darkorange: 'ff8c00',
darkorchid: '9932cc', darkorchid: '9932cc',
darkred: '8b0000', darkred: '8b0000',
darksalmon: 'e9967a', darksalmon: 'e9967a',
darkseagreen: '8fbc8f', darkseagreen: '8fbc8f',
darkslateblue: '483d8b', darkslateblue: '483d8b',
darkslategray: '2f4f4f', darkslategray: '2f4f4f',
darkturquoise: '00ced1', darkturquoise: '00ced1',
darkviolet: '9400d3', darkviolet: '9400d3',
deeppink: 'ff1493', deeppink: 'ff1493',
deepskyblue: '00bfff', deepskyblue: '00bfff',
dimgray: '696969', dimgray: '696969',
dodgerblue: '1e90ff', dodgerblue: '1e90ff',
feldspar: 'd19275', feldspar: 'd19275',
firebrick: 'b22222', firebrick: 'b22222',
floralwhite: 'fffaf0', floralwhite: 'fffaf0',
forestgreen: '228b22', forestgreen: '228b22',
fuchsia: 'ff00ff', fuchsia: 'ff00ff',
gainsboro: 'dcdcdc', gainsboro: 'dcdcdc',
ghostwhite: 'f8f8ff', ghostwhite: 'f8f8ff',
gold: 'ffd700', gold: 'ffd700',
goldenrod: 'daa520', goldenrod: 'daa520',
gray: '808080', gray: '808080',
green: '008000', green: '008000',
greenyellow: 'adff2f', greenyellow: 'adff2f',
honeydew: 'f0fff0', honeydew: 'f0fff0',
hotpink: 'ff69b4', hotpink: 'ff69b4',
indianred: 'cd5c5c', indianred: 'cd5c5c',
indigo: '4b0082', indigo: '4b0082',
ivory: 'fffff0', ivory: 'fffff0',
khaki: 'f0e68c', khaki: 'f0e68c',
lavender: 'e6e6fa', lavender: 'e6e6fa',
lavenderblush: 'fff0f5', lavenderblush: 'fff0f5',
lawngreen: '7cfc00', lawngreen: '7cfc00',
lemonchiffon: 'fffacd', lemonchiffon: 'fffacd',
lightblue: 'add8e6', lightblue: 'add8e6',
lightcoral: 'f08080', lightcoral: 'f08080',
lightcyan: 'e0ffff', lightcyan: 'e0ffff',
lightgoldenrodyellow: 'fafad2', lightgoldenrodyellow: 'fafad2',
lightgrey: 'd3d3d3', lightgrey: 'd3d3d3',
lightgreen: '90ee90', lightgreen: '90ee90',
lightpink: 'ffb6c1', lightpink: 'ffb6c1',
lightsalmon: 'ffa07a', lightsalmon: 'ffa07a',
lightseagreen: '20b2aa', lightseagreen: '20b2aa',
lightskyblue: '87cefa', lightskyblue: '87cefa',
lightslateblue: '8470ff', lightslateblue: '8470ff',
lightslategray: '778899', lightslategray: '778899',
lightsteelblue: 'b0c4de', lightsteelblue: 'b0c4de',
lightyellow: 'ffffe0', lightyellow: 'ffffe0',
lime: '00ff00', lime: '00ff00',
limegreen: '32cd32', limegreen: '32cd32',
linen: 'faf0e6', linen: 'faf0e6',
magenta: 'ff00ff', magenta: 'ff00ff',
maroon: '800000', maroon: '800000',
mediumaquamarine: '66cdaa', mediumaquamarine: '66cdaa',
mediumblue: '0000cd', mediumblue: '0000cd',
mediumorchid: 'ba55d3', mediumorchid: 'ba55d3',
mediumpurple: '9370d8', mediumpurple: '9370d8',
mediumseagreen: '3cb371', mediumseagreen: '3cb371',
mediumslateblue: '7b68ee', mediumslateblue: '7b68ee',
mediumspringgreen: '00fa9a', mediumspringgreen: '00fa9a',
mediumturquoise: '48d1cc', mediumturquoise: '48d1cc',
mediumvioletred: 'c71585', mediumvioletred: 'c71585',
midnightblue: '191970', midnightblue: '191970',
mintcream: 'f5fffa', mintcream: 'f5fffa',
mistyrose: 'ffe4e1', mistyrose: 'ffe4e1',
moccasin: 'ffe4b5', moccasin: 'ffe4b5',
navajowhite: 'ffdead', navajowhite: 'ffdead',
navy: '000080', navy: '000080',
oldlace: 'fdf5e6', oldlace: 'fdf5e6',
olive: '808000', olive: '808000',
olivedrab: '6b8e23', olivedrab: '6b8e23',
orange: 'ffa500', orange: 'ffa500',
orangered: 'ff4500', orangered: 'ff4500',
orchid: 'da70d6', orchid: 'da70d6',
palegoldenrod: 'eee8aa', palegoldenrod: 'eee8aa',
palegreen: '98fb98', palegreen: '98fb98',
paleturquoise: 'afeeee', paleturquoise: 'afeeee',
palevioletred: 'd87093', palevioletred: 'd87093',
papayawhip: 'ffefd5', papayawhip: 'ffefd5',
peachpuff: 'ffdab9', peachpuff: 'ffdab9',
peru: 'cd853f', peru: 'cd853f',
pink: 'ffc0cb', pink: 'ffc0cb',
plum: 'dda0dd', plum: 'dda0dd',
powderblue: 'b0e0e6', powderblue: 'b0e0e6',
purple: '800080', purple: '800080',
red: 'ff0000', red: 'ff0000',
rosybrown: 'bc8f8f', rosybrown: 'bc8f8f',
royalblue: '4169e1', royalblue: '4169e1',
saddlebrown: '8b4513', saddlebrown: '8b4513',
salmon: 'fa8072', salmon: 'fa8072',
sandybrown: 'f4a460', sandybrown: 'f4a460',
seagreen: '2e8b57', seagreen: '2e8b57',
seashell: 'fff5ee', seashell: 'fff5ee',
sienna: 'a0522d', sienna: 'a0522d',
silver: 'c0c0c0', silver: 'c0c0c0',
skyblue: '87ceeb', skyblue: '87ceeb',
slateblue: '6a5acd', slateblue: '6a5acd',
slategray: '708090', slategray: '708090',
snow: 'fffafa', snow: 'fffafa',
springgreen: '00ff7f', springgreen: '00ff7f',
steelblue: '4682b4', steelblue: '4682b4',
tan: 'd2b48c', tan: 'd2b48c',
teal: '008080', teal: '008080',
thistle: 'd8bfd8', thistle: 'd8bfd8',
tomato: 'ff6347', tomato: 'ff6347',
turquoise: '40e0d0', turquoise: '40e0d0',
violet: 'ee82ee', violet: 'ee82ee',
violetred: 'd02090', violetred: 'd02090',
wheat: 'f5deb3', wheat: 'f5deb3',
white: 'ffffff', white: 'ffffff',
whitesmoke: 'f5f5f5', whitesmoke: 'f5f5f5',
yellow: 'ffff00', yellow: 'ffff00',
yellowgreen: '9acd32' yellowgreen: '9acd32'
}; };
var key; var key;
for (key in simpleColors) { for (key in simpleColors) {
if (simpleColors.hasOwnProperty(key)) { if (simpleColors.hasOwnProperty(key)) {
if (colorString === key) { if (colorString === key) {
colorString = simpleColors[key]; colorString = simpleColors[key];
} }
} }
} }
// emd of simple type-in colors // emd of simple type-in colors
// array of color definition objects // array of color definition objects
var colorDefs = [ var colorDefs = [
{ {
re: /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/, re: /^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/,
example: ['rgb(123, 234, 45)', 'rgb(255,234,245)'], example: ['rgb(123, 234, 45)', 'rgb(255,234,245)'],
process: function (bits) { process: function (bits) {
return [ return [
parseInt(bits[1], 10), parseInt(bits[1], 10),
parseInt(bits[2], 10), parseInt(bits[2], 10),
parseInt(bits[3], 10) parseInt(bits[3], 10)
]; ];
} }
}, },
{ {
re: /^(\w{2})(\w{2})(\w{2})$/, re: /^(\w{2})(\w{2})(\w{2})$/,
example: ['#00ff00', '336699'], example: ['#00ff00', '336699'],
process: function (bits) { process: function (bits) {
return [ return [
parseInt(bits[1], 16), parseInt(bits[1], 16),
parseInt(bits[2], 16), parseInt(bits[2], 16),
parseInt(bits[3], 16) parseInt(bits[3], 16)
]; ];
} }
}, },
{ {
re: /^(\w{1})(\w{1})(\w{1})$/, re: /^(\w{1})(\w{1})(\w{1})$/,
example: ['#fb0', 'f0f'], example: ['#fb0', 'f0f'],
process: function (bits) { process: function (bits) {
return [ return [
parseInt(bits[1] + bits[1], 16), parseInt(bits[1] + bits[1], 16),
parseInt(bits[2] + bits[2], 16), parseInt(bits[2] + bits[2], 16),
parseInt(bits[3] + bits[3], 16) parseInt(bits[3] + bits[3], 16)
]; ];
} }
} }
]; ];
var i; var i;
// search through the definitions to find a match // search through the definitions to find a match
for (i = 0; i < colorDefs.length; i++) { for (i = 0; i < colorDefs.length; i++) {
var re = colorDefs[i].re; var re = colorDefs[i].re;
var processor = colorDefs[i].process; var processor = colorDefs[i].process;
var bits = re.exec(colorString); var bits = re.exec(colorString);
if (bits) { if (bits) {
var channels = processor(bits); var channels = processor(bits);
this.r = channels[0]; this.r = channels[0];
this.g = channels[1]; this.g = channels[1];
this.b = channels[2]; this.b = channels[2];
this.ok = true; this.ok = true;
} }
} }
// validate/cleanup values // validate/cleanup values
this.r = (this.r < 0 || isNaN(this.r)) ? 0 : ((this.r > 255) ? 255 : this.r); this.r = (this.r < 0 || isNaN(this.r)) ? 0 : ((this.r > 255) ? 255 : this.r);
this.g = (this.g < 0 || isNaN(this.g)) ? 0 : ((this.g > 255) ? 255 : this.g); this.g = (this.g < 0 || isNaN(this.g)) ? 0 : ((this.g > 255) ? 255 : this.g);
this.b = (this.b < 0 || isNaN(this.b)) ? 0 : ((this.b > 255) ? 255 : this.b); this.b = (this.b < 0 || isNaN(this.b)) ? 0 : ((this.b > 255) ? 255 : this.b);
// some getters // some getters
this.toRGB = function () { this.toRGB = function () {
return 'rgb(' + this.r + ', ' + this.g + ', ' + this.b + ')'; return 'rgb(' + this.r + ', ' + this.g + ', ' + this.b + ')';
}; };
this.toHex = function () { this.toHex = function () {
var r = this.r.toString(16); var r = this.r.toString(16);
var g = this.g.toString(16); var g = this.g.toString(16);
var b = this.b.toString(16); var b = this.b.toString(16);
if (r.length === 1) { r = '0' + r; } if (r.length === 1) { r = '0' + r; }
if (g.length === 1) { g = '0' + g; } if (g.length === 1) { g = '0' + g; }
if (b.length === 1) { b = '0' + b; } if (b.length === 1) { b = '0' + b; }
return '#' + r + g + b; return '#' + r + g + b;
}; };
// help // help
this.getHelpXML = function () { this.getHelpXML = function () {
var i, j; var i, j;
var examples = []; var examples = [];
// add regexps // add regexps
for (i = 0; i < colorDefs.length; i++) { for (i = 0; i < colorDefs.length; i++) {
var example = colorDefs[i].example; var example = colorDefs[i].example;
for (j = 0; j < example.length; j++) { for (j = 0; j < example.length; j++) {
examples[examples.length] = example[j]; examples[examples.length] = example[j];
} }
} }
// add type-in colors // add type-in colors
var sc; var sc;
for (sc in simpleColors) { for (sc in simpleColors) {
if (simpleColors.hasOwnProperty(sc)) { if (simpleColors.hasOwnProperty(sc)) {
examples[examples.length] = sc; examples[examples.length] = sc;
} }
} }
var xml = document.createElement('ul'); var xml = document.createElement('ul');
xml.setAttribute('id', 'rgbcolor-examples'); xml.setAttribute('id', 'rgbcolor-examples');
for (i = 0; i < examples.length; i++) { for (i = 0; i < examples.length; i++) {
try { try {
var listItem = document.createElement('li'); var listItem = document.createElement('li');
var listColor = new RGBColor(examples[i]); var listColor = new RGBColor(examples[i]);
var exampleDiv = document.createElement('div'); var exampleDiv = document.createElement('div');
exampleDiv.style.cssText = exampleDiv.style.cssText =
'margin: 3px; ' + 'margin: 3px; ' +
'border: 1px solid black; ' + 'border: 1px solid black; ' +
'background:' + listColor.toHex() + '; ' + 'background:' + listColor.toHex() + '; ' +
'color:' + listColor.toHex() 'color:' + listColor.toHex()
; ;
exampleDiv.appendChild(document.createTextNode('test')); exampleDiv.appendChild(document.createTextNode('test'));
var listItemValue = document.createTextNode( var listItemValue = document.createTextNode(
' ' + examples[i] + ' -> ' + listColor.toRGB() + ' -> ' + listColor.toHex() ' ' + examples[i] + ' -> ' + listColor.toRGB() + ' -> ' + listColor.toHex()
); );
listItem.appendChild(exampleDiv); listItem.appendChild(exampleDiv);
listItem.appendChild(listItemValue); listItem.appendChild(listItemValue);
xml.appendChild(listItem); xml.appendChild(listItem);
} catch (e) {} } catch (e) {}
} }
return xml; return xml;
}; };
} }

View File

@@ -16,190 +16,190 @@
// and the MIT License and is copyright A Beautiful Site, LLC. // and the MIT License and is copyright A Beautiful Site, LLC.
// //
if (jQuery) { if (jQuery) {
(function () { (function () {
var win = $(window); var win = $(window);
var doc = $(document); var doc = $(document);
$.extend($.fn, { $.extend($.fn, {
contextMenu: function (o, callback) { contextMenu: function (o, callback) {
// Defaults // Defaults
if (o.menu === undefined) return false; if (o.menu === undefined) return false;
if (o.inSpeed === undefined) o.inSpeed = 150; if (o.inSpeed === undefined) o.inSpeed = 150;
if (o.outSpeed === undefined) o.outSpeed = 75; if (o.outSpeed === undefined) o.outSpeed = 75;
// 0 needs to be -1 for expected results (no fade) // 0 needs to be -1 for expected results (no fade)
if (o.inSpeed === 0) o.inSpeed = -1; if (o.inSpeed === 0) o.inSpeed = -1;
if (o.outSpeed === 0) o.outSpeed = -1; if (o.outSpeed === 0) o.outSpeed = -1;
// Loop each context menu // Loop each context menu
$(this).each(function () { $(this).each(function () {
var el = $(this); var el = $(this);
var offset = $(el).offset(); var offset = $(el).offset();
var menu = $('#' + o.menu); var menu = $('#' + o.menu);
// Add contextMenu class // Add contextMenu class
menu.addClass('contextMenu'); menu.addClass('contextMenu');
// Simulate a true right click // Simulate a true right click
$(this).bind('mousedown', function (e) { $(this).bind('mousedown', function (e) {
var evt = e; var evt = e;
$(this).mouseup(function (e) { $(this).mouseup(function (e) {
var srcElement = $(this); var srcElement = $(this);
srcElement.unbind('mouseup'); srcElement.unbind('mouseup');
if (evt.button === 2 || o.allowLeft || if (evt.button === 2 || o.allowLeft ||
(evt.ctrlKey && svgedit.browser.isMac())) { (evt.ctrlKey && svgedit.browser.isMac())) {
e.stopPropagation(); e.stopPropagation();
// Hide context menus that may be showing // Hide context menus that may be showing
$('.contextMenu').hide(); $('.contextMenu').hide();
// Get this context menu // Get this context menu
if (el.hasClass('disabled')) return false; if (el.hasClass('disabled')) return false;
// Detect mouse position // Detect mouse position
var x = e.pageX, y = e.pageY; var x = e.pageX, y = e.pageY;
var xOff = win.width() - menu.width(), var xOff = win.width() - menu.width(),
yOff = win.height() - menu.height(); yOff = win.height() - menu.height();
if (x > xOff - 15) x = xOff - 15; if (x > xOff - 15) x = xOff - 15;
if (y > yOff - 30) y = yOff - 30; // 30 is needed to prevent scrollbars in FF if (y > yOff - 30) y = yOff - 30; // 30 is needed to prevent scrollbars in FF
// Show the menu // Show the menu
doc.unbind('click'); doc.unbind('click');
menu.css({ top: y, left: x }).fadeIn(o.inSpeed); menu.css({ top: y, left: x }).fadeIn(o.inSpeed);
// Hover events // Hover events
menu.find('A').mouseover(function () { menu.find('A').mouseover(function () {
menu.find('LI.hover').removeClass('hover'); menu.find('LI.hover').removeClass('hover');
$(this).parent().addClass('hover'); $(this).parent().addClass('hover');
}).mouseout(function () { }).mouseout(function () {
menu.find('LI.hover').removeClass('hover'); menu.find('LI.hover').removeClass('hover');
}); });
// Keyboard // Keyboard
doc.keypress(function (e) { doc.keypress(function (e) {
switch (e.keyCode) { switch (e.keyCode) {
case 38: // up case 38: // up
if (!menu.find('LI.hover').length) { if (!menu.find('LI.hover').length) {
menu.find('LI:last').addClass('hover'); menu.find('LI:last').addClass('hover');
} else { } else {
menu.find('LI.hover').removeClass('hover').prevAll('LI:not(.disabled)').eq(0).addClass('hover'); menu.find('LI.hover').removeClass('hover').prevAll('LI:not(.disabled)').eq(0).addClass('hover');
if (!menu.find('LI.hover').length) menu.find('LI:last').addClass('hover'); if (!menu.find('LI.hover').length) menu.find('LI:last').addClass('hover');
} }
break; break;
case 40: // down case 40: // down
if (menu.find('LI.hover').length === 0) { if (menu.find('LI.hover').length === 0) {
menu.find('LI:first').addClass('hover'); menu.find('LI:first').addClass('hover');
} else { } else {
menu.find('LI.hover').removeClass('hover').nextAll('LI:not(.disabled)').eq(0).addClass('hover'); menu.find('LI.hover').removeClass('hover').nextAll('LI:not(.disabled)').eq(0).addClass('hover');
if (!menu.find('LI.hover').length) menu.find('LI:first').addClass('hover'); if (!menu.find('LI.hover').length) menu.find('LI:first').addClass('hover');
} }
break; break;
case 13: // enter case 13: // enter
menu.find('LI.hover A').trigger('click'); menu.find('LI.hover A').trigger('click');
break; break;
case 27: // esc case 27: // esc
doc.trigger('click'); doc.trigger('click');
break; break;
} }
}); });
// When items are selected // When items are selected
menu.find('A').unbind('mouseup'); menu.find('A').unbind('mouseup');
menu.find('LI:not(.disabled) A').mouseup(function () { menu.find('LI:not(.disabled) A').mouseup(function () {
doc.unbind('click').unbind('keypress'); doc.unbind('click').unbind('keypress');
$('.contextMenu').hide(); $('.contextMenu').hide();
// Callback // Callback
if (callback) callback($(this).attr('href').substr(1), $(srcElement), {x: x - offset.left, y: y - offset.top, docX: x, docY: y}); if (callback) callback($(this).attr('href').substr(1), $(srcElement), {x: x - offset.left, y: y - offset.top, docX: x, docY: y});
return false; return false;
}); });
// Hide bindings // Hide bindings
setTimeout(function () { // Delay for Mozilla setTimeout(function () { // Delay for Mozilla
doc.click(function () { doc.click(function () {
doc.unbind('click').unbind('keypress'); doc.unbind('click').unbind('keypress');
menu.fadeOut(o.outSpeed); menu.fadeOut(o.outSpeed);
return false; return false;
}); });
}, 0); }, 0);
} }
}); });
}); });
// Disable text selection // Disable text selection
if ($.browser.mozilla) { if ($.browser.mozilla) {
$('#' + o.menu).each(function () { $(this).css({'MozUserSelect': 'none'}); }); $('#' + o.menu).each(function () { $(this).css({'MozUserSelect': 'none'}); });
} else if ($.browser.msie) { } else if ($.browser.msie) {
$('#' + o.menu).each(function () { $(this).bind('selectstart.disableTextSelect', function () { return false; }); }); $('#' + o.menu).each(function () { $(this).bind('selectstart.disableTextSelect', function () { return false; }); });
} else { } else {
$('#' + o.menu).each(function () { $(this).bind('mousedown.disableTextSelect', function () { return false; }); }); $('#' + o.menu).each(function () { $(this).bind('mousedown.disableTextSelect', function () { return false; }); });
} }
// Disable browser context menu (requires both selectors to work in IE/Safari + FF/Chrome) // Disable browser context menu (requires both selectors to work in IE/Safari + FF/Chrome)
$(el).add($('UL.contextMenu')).bind('contextmenu', function () { return false; }); $(el).add($('UL.contextMenu')).bind('contextmenu', function () { return false; });
}); });
return $(this); return $(this);
}, },
// Disable context menu items on the fly // Disable context menu items on the fly
disableContextMenuItems: function (o) { disableContextMenuItems: function (o) {
if (o === undefined) { if (o === undefined) {
// Disable all // Disable all
$(this).find('LI').addClass('disabled'); $(this).find('LI').addClass('disabled');
return $(this); return $(this);
} }
$(this).each(function () { $(this).each(function () {
if (o !== undefined) { if (o !== undefined) {
var d = o.split(','); var d = o.split(',');
for (var i = 0; i < d.length; i++) { for (var i = 0; i < d.length; i++) {
$(this).find('A[href="' + d[i] + '"]').parent().addClass('disabled'); $(this).find('A[href="' + d[i] + '"]').parent().addClass('disabled');
} }
} }
}); });
return $(this); return $(this);
}, },
// Enable context menu items on the fly // Enable context menu items on the fly
enableContextMenuItems: function (o) { enableContextMenuItems: function (o) {
if (o === undefined) { if (o === undefined) {
// Enable all // Enable all
$(this).find('LI.disabled').removeClass('disabled'); $(this).find('LI.disabled').removeClass('disabled');
return $(this); return $(this);
} }
$(this).each(function () { $(this).each(function () {
if (o !== undefined) { if (o !== undefined) {
var d = o.split(','); var d = o.split(',');
for (var i = 0; i < d.length; i++) { for (var i = 0; i < d.length; i++) {
$(this).find('A[href="' + d[i] + '"]').parent().removeClass('disabled'); $(this).find('A[href="' + d[i] + '"]').parent().removeClass('disabled');
} }
} }
}); });
return $(this); return $(this);
}, },
// Disable context menu(s) // Disable context menu(s)
disableContextMenu: function () { disableContextMenu: function () {
$(this).each(function () { $(this).each(function () {
$(this).addClass('disabled'); $(this).addClass('disabled');
}); });
return $(this); return $(this);
}, },
// Enable context menu(s) // Enable context menu(s)
enableContextMenu: function () { enableContextMenu: function () {
$(this).each(function () { $(this).each(function () {
$(this).removeClass('disabled'); $(this).removeClass('disabled');
}); });
return $(this); return $(this);
}, },
// Destroy context menu(s) // Destroy context menu(s)
destroyContextMenu: function () { destroyContextMenu: function () {
// Destroy specified context menus // Destroy specified context menus
$(this).each(function () { $(this).each(function () {
// Disable action // Disable action
$(this).unbind('mousedown').unbind('mouseup'); $(this).unbind('mousedown').unbind('mouseup');
}); });
return $(this); return $(this);
} }
}); });
})(jQuery); })(jQuery);
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

90
editor/jquery-svg.js vendored
View File

@@ -24,52 +24,52 @@
// as an object with values for each given attributes // as an object with values for each given attributes
var proxied = jQuery.fn.attr, var proxied = jQuery.fn.attr,
// TODO use NS.SVG instead // TODO use NS.SVG instead
svgns = 'http://www.w3.org/2000/svg'; svgns = 'http://www.w3.org/2000/svg';
jQuery.fn.attr = function (key, value) { jQuery.fn.attr = function (key, value) {
var i, attr; var i, attr;
var len = this.length; var len = this.length;
if (!len) { return proxied.apply(this, arguments); } if (!len) { return proxied.apply(this, arguments); }
for (i = 0; i < len; ++i) { for (i = 0; i < len; ++i) {
var elem = this[i]; var elem = this[i];
// set/get SVG attribute // set/get SVG attribute
if (elem.namespaceURI === svgns) { if (elem.namespaceURI === svgns) {
// Setting attribute // Setting attribute
if (value !== undefined) { if (value !== undefined) {
elem.setAttribute(key, value); elem.setAttribute(key, value);
} else if ($.isArray(key)) { } else if ($.isArray(key)) {
// Getting attributes from array // Getting attributes from array
var j = key.length, obj = {}; var j = key.length, obj = {};
while (j--) { while (j--) {
var aname = key[j]; var aname = key[j];
attr = elem.getAttribute(aname); attr = elem.getAttribute(aname);
// This returns a number when appropriate // This returns a number when appropriate
if (attr || attr === '0') { if (attr || attr === '0') {
attr = isNaN(attr) ? attr : (attr - 0); attr = isNaN(attr) ? attr : (attr - 0);
} }
obj[aname] = attr; obj[aname] = attr;
} }
return obj; return obj;
} }
if (typeof key === 'object') { if (typeof key === 'object') {
// Setting attributes form object // Setting attributes form object
var v; var v;
for (v in key) { for (v in key) {
elem.setAttribute(v, key[v]); elem.setAttribute(v, key[v]);
} }
// Getting attribute // Getting attribute
} else { } else {
attr = elem.getAttribute(key); attr = elem.getAttribute(key);
if (attr || attr === '0') { if (attr || attr === '0') {
attr = isNaN(attr) ? attr : (attr - 0); attr = isNaN(attr) ? attr : (attr - 0);
} }
return attr; return attr;
} }
} else { } else {
return proxied.apply(this, arguments); return proxied.apply(this, arguments);
} }
} }
return this; return this;
}; };
}()); }());

View File

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

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "af", lang: "af",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Spaar", "ok": "Spaar",
"cancel": "Annuleer", "cancel": "Annuleer",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Klik om te verander vul kleur, verskuiwing klik om &#39;n beroerte kleur verander", "palette_info": "Klik om te verander vul kleur, verskuiwing klik om &#39;n beroerte kleur verander",
"zoom_level": "Change zoom vlak", "zoom_level": "Change zoom vlak",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Verandering vul kleur", "fill_color": "Verandering vul kleur",
"stroke_color": "Verandering beroerte kleur", "stroke_color": "Verandering beroerte kleur",
"stroke_style": "Verandering beroerte dash styl", "stroke_style": "Verandering beroerte dash styl",
"stroke_width": "Verandering beroerte breedte", "stroke_width": "Verandering beroerte breedte",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Verandering rotasie-hoek", "angle": "Verandering rotasie-hoek",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Verander geselekteerde item opaciteit", "opacity": "Verander geselekteerde item opaciteit",
"circle_cx": "Verandering sirkel se cx koördineer", "circle_cx": "Verandering sirkel se cx koördineer",
"circle_cy": "Verandering sirkel se cy koördineer", "circle_cy": "Verandering sirkel se cy koördineer",
"circle_r": "Verandering sirkel se radius", "circle_r": "Verandering sirkel se radius",
"ellipse_cx": "Verandering ellips se cx koördineer", "ellipse_cx": "Verandering ellips se cx koördineer",
"ellipse_cy": "Verander ellips se cy koördineer", "ellipse_cy": "Verander ellips se cy koördineer",
"ellipse_rx": "Verandering ellips se x radius", "ellipse_rx": "Verandering ellips se x radius",
"ellipse_ry": "Verander ellips se j radius", "ellipse_ry": "Verander ellips se j radius",
"line_x1": "Verandering lyn se vertrek x koördinaat", "line_x1": "Verandering lyn se vertrek x koördinaat",
"line_x2": "Verandering lyn se eindig x koördinaat", "line_x2": "Verandering lyn se eindig x koördinaat",
"line_y1": "Verandering lyn se vertrek y koördinaat", "line_y1": "Verandering lyn se vertrek y koördinaat",
"line_y2": "Verandering lyn se eindig y koördinaat", "line_y2": "Verandering lyn se eindig y koördinaat",
"rect_height": "Verandering reghoek hoogte", "rect_height": "Verandering reghoek hoogte",
"rect_width": "Verandering reghoek breedte", "rect_width": "Verandering reghoek breedte",
"corner_radius": "Verandering Rechthoek Corner Radius", "corner_radius": "Verandering Rechthoek Corner Radius",
"image_width": "Verander prent breedte", "image_width": "Verander prent breedte",
"image_height": "Verandering prent hoogte", "image_height": "Verandering prent hoogte",
"image_url": "URL verander", "image_url": "URL verander",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Verander teks inhoud", "text_contents": "Verander teks inhoud",
"font_family": "Lettertipe verander Familie", "font_family": "Lettertipe verander Familie",
"font_size": "Verandering Lettertipe Grootte", "font_size": "Verandering Lettertipe Grootte",
"bold": "Vetgedrukte teks", "bold": "Vetgedrukte teks",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Verander agtergrondkleur / opaciteit", "bkgnd_color_opac": "Verander agtergrondkleur / opaciteit",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Pas na inhoud", "fitToContent": "Pas na inhoud",
"fit_to_all": "Passing tot al inhoud", "fit_to_all": "Passing tot al inhoud",
"fit_to_canvas": "Passing tot doek", "fit_to_canvas": "Passing tot doek",
"fit_to_layer_content": "Passing tot laag inhoud", "fit_to_layer_content": "Passing tot laag inhoud",
"fit_to_sel": "Passing tot seleksie", "fit_to_sel": "Passing tot seleksie",
"align_relative_to": "Align in verhouding tot ...", "align_relative_to": "Align in verhouding tot ...",
"relativeTo": "relatief tot:", "relativeTo": "relatief tot:",
"page": "bladsy", "page": "bladsy",
"largest_object": "grootste voorwerp", "largest_object": "grootste voorwerp",
"selected_objects": "verkose voorwerpe", "selected_objects": "verkose voorwerpe",
"smallest_object": "kleinste voorwerp", "smallest_object": "kleinste voorwerp",
"new_doc": "Nuwe Beeld", "new_doc": "Nuwe Beeld",
"open_doc": "Open Beeld", "open_doc": "Open Beeld",
"export_img": "Export", "export_img": "Export",
"save_doc": "Slaan Beeld", "save_doc": "Slaan Beeld",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Rig Middel", "align_center": "Rig Middel",
"align_left": "Links Regterkant", "align_left": "Links Regterkant",
"align_middle": "Align Midde", "align_middle": "Align Midde",
"align_right": "Lijn regs uit", "align_right": "Lijn regs uit",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Select Gereedschap", "mode_select": "Select Gereedschap",
"mode_fhpath": "Potlood tool", "mode_fhpath": "Potlood tool",
"mode_line": "Lyn Gereedskap", "mode_line": "Lyn Gereedskap",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-hand Rectangle", "mode_fhrect": "Free-hand Rectangle",
"mode_ellipse": "Ellips", "mode_ellipse": "Ellips",
"mode_circle": "Sirkel", "mode_circle": "Sirkel",
"mode_fhellipse": "Gratis-Hand Ellips", "mode_fhellipse": "Gratis-Hand Ellips",
"mode_path": "Poli Gereedskap", "mode_path": "Poli Gereedskap",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Gereedskap", "mode_text": "Text Gereedskap",
"mode_image": "Image Gereedskap", "mode_image": "Image Gereedskap",
"mode_zoom": "Klik op die Gereedskap", "mode_zoom": "Klik op die Gereedskap",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Boontoe", "undo": "Boontoe",
"redo": "Oordoen", "redo": "Oordoen",
"tool_source": "Wysig Bron", "tool_source": "Wysig Bron",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Groep Elemente", "group_elements": "Groep Elemente",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elemente", "ungroup": "Ungroup Elemente",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Skuif na Bottom", "move_bottom": "Skuif na Bottom",
"move_top": "Skuif na bo", "move_top": "Skuif na bo",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Spaar", "source_save": "Spaar",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Verwyder Laag", "del": "Verwyder Laag",
"move_down": "Beweeg afbreek Down", "move_down": "Beweeg afbreek Down",
"new": "Nuwe Layer", "new": "Nuwe Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Beweeg afbreek Up", "move_up": "Beweeg afbreek Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Doek Dimensions", "doc_dims": "Doek Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Kies gedefinieerde:", "select_predefined": "Kies gedefinieerde:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "ar", lang: "ar",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "حفظ", "ok": "حفظ",
"cancel": "إلغاء", "cancel": "إلغاء",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "انقر لتغيير لون التعبئة ، تحولا مزدوجا فوق لتغيير لون السكتة الدماغية", "palette_info": "انقر لتغيير لون التعبئة ، تحولا مزدوجا فوق لتغيير لون السكتة الدماغية",
"zoom_level": "تغيير مستوى التكبير", "zoom_level": "تغيير مستوى التكبير",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "تغير لون التعبئة", "fill_color": "تغير لون التعبئة",
"stroke_color": "تغير لون السكتة الدماغية", "stroke_color": "تغير لون السكتة الدماغية",
"stroke_style": "تغيير نمط السكتة الدماغية اندفاعة", "stroke_style": "تغيير نمط السكتة الدماغية اندفاعة",
"stroke_width": "تغيير عرض السكتة الدماغية", "stroke_width": "تغيير عرض السكتة الدماغية",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "تغيير زاوية الدوران", "angle": "تغيير زاوية الدوران",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "تغيير مختارة غموض البند", "opacity": "تغيير مختارة غموض البند",
"circle_cx": "دائرة التغيير لتنسيق cx", "circle_cx": "دائرة التغيير لتنسيق cx",
"circle_cy": "Change circle's cy coordinate", "circle_cy": "Change circle's cy coordinate",
"circle_r": "التغيير في دائرة نصف قطرها", "circle_r": "التغيير في دائرة نصف قطرها",
"ellipse_cx": "تغيير شكل البيضاوي cx تنسيق", "ellipse_cx": "تغيير شكل البيضاوي cx تنسيق",
"ellipse_cy": "تغيير شكل البيضاوي قبرصي تنسيق", "ellipse_cy": "تغيير شكل البيضاوي قبرصي تنسيق",
"ellipse_rx": "تغيير شكل البيضاوي خ نصف قطرها", "ellipse_rx": "تغيير شكل البيضاوي خ نصف قطرها",
"ellipse_ry": "تغيير القطع الناقص في دائرة نصف قطرها ذ", "ellipse_ry": "تغيير القطع الناقص في دائرة نصف قطرها ذ",
"line_x1": "تغيير الخط لبدء تنسيق خ", "line_x1": "تغيير الخط لبدء تنسيق خ",
"line_x2": "تغيير الخط لانهاء خ تنسيق", "line_x2": "تغيير الخط لانهاء خ تنسيق",
"line_y1": "تغيير الخط لبدء تنسيق ذ", "line_y1": "تغيير الخط لبدء تنسيق ذ",
"line_y2": "تغيير الخط لإنهاء تنسيق ذ", "line_y2": "تغيير الخط لإنهاء تنسيق ذ",
"rect_height": "تغيير المستطيل الارتفاع", "rect_height": "تغيير المستطيل الارتفاع",
"rect_width": "تغيير عرض المستطيل", "rect_width": "تغيير عرض المستطيل",
"corner_radius": "تغيير مستطيل ركن الشعاع", "corner_radius": "تغيير مستطيل ركن الشعاع",
"image_width": "تغيير صورة العرض", "image_width": "تغيير صورة العرض",
"image_height": "تغيير ارتفاع الصورة", "image_height": "تغيير ارتفاع الصورة",
"image_url": "تغيير العنوان", "image_url": "تغيير العنوان",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "تغيير محتويات النص", "text_contents": "تغيير محتويات النص",
"font_family": "تغيير الخط الأسرة", "font_family": "تغيير الخط الأسرة",
"font_size": "تغيير حجم الخط", "font_size": "تغيير حجم الخط",
"bold": "نص جريء", "bold": "نص جريء",
"italic": "مائل نص" "italic": "مائل نص"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "تغير لون الخلفية / غموض", "bkgnd_color_opac": "تغير لون الخلفية / غموض",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "لائقا للمحتوى", "fitToContent": "لائقا للمحتوى",
"fit_to_all": "يصلح لجميع المحتويات", "fit_to_all": "يصلح لجميع المحتويات",
"fit_to_canvas": "يصلح لوحة زيتية على قماش", "fit_to_canvas": "يصلح لوحة زيتية على قماش",
"fit_to_layer_content": "يصلح لطبقة المحتوى", "fit_to_layer_content": "يصلح لطبقة المحتوى",
"fit_to_sel": "يصلح لاختيار", "fit_to_sel": "يصلح لاختيار",
"align_relative_to": "محاذاة النسبي ل ...", "align_relative_to": "محاذاة النسبي ل ...",
"relativeTo": "بالنسبة إلى:", "relativeTo": "بالنسبة إلى:",
"page": "الصفحة", "page": "الصفحة",
"largest_object": "أكبر كائن", "largest_object": "أكبر كائن",
"selected_objects": "انتخب الأجسام", "selected_objects": "انتخب الأجسام",
"smallest_object": "أصغر كائن", "smallest_object": "أصغر كائن",
"new_doc": "صورة جديدة", "new_doc": "صورة جديدة",
"open_doc": "فتح الصورة", "open_doc": "فتح الصورة",
"export_img": "Export", "export_img": "Export",
"save_doc": "حفظ صورة", "save_doc": "حفظ صورة",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "محاذاة القاع", "align_bottom": "محاذاة القاع",
"align_center": "مركز محاذاة", "align_center": "مركز محاذاة",
"align_left": "محاذاة إلى اليسار", "align_left": "محاذاة إلى اليسار",
"align_middle": "محاذاة الأوسط", "align_middle": "محاذاة الأوسط",
"align_right": "محاذاة إلى اليمين", "align_right": "محاذاة إلى اليمين",
"align_top": "محاذاة الأعلى", "align_top": "محاذاة الأعلى",
"mode_select": "اختر أداة", "mode_select": "اختر أداة",
"mode_fhpath": "أداة قلم رصاص", "mode_fhpath": "أداة قلم رصاص",
"mode_line": "خط أداة", "mode_line": "خط أداة",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "القطع الناقص", "mode_ellipse": "القطع الناقص",
"mode_circle": "دائرة", "mode_circle": "دائرة",
"mode_fhellipse": "اليد الحرة البيضوي", "mode_fhellipse": "اليد الحرة البيضوي",
"mode_path": "بولي أداة", "mode_path": "بولي أداة",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "النص أداة", "mode_text": "النص أداة",
"mode_image": "الصورة أداة", "mode_image": "الصورة أداة",
"mode_zoom": "أداة تكبير", "mode_zoom": "أداة تكبير",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "التراجع", "undo": "التراجع",
"redo": "إعادته", "redo": "إعادته",
"tool_source": "عدل المصدر", "tool_source": "عدل المصدر",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "مجموعة عناصر", "group_elements": "مجموعة عناصر",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "فك تجميع عناصر", "ungroup": "فك تجميع عناصر",
"docprops": "خصائص المستند", "docprops": "خصائص المستند",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "الانتقال إلى أسفل", "move_bottom": "الانتقال إلى أسفل",
"move_top": "الانتقال إلى أعلى", "move_top": "الانتقال إلى أعلى",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "حفظ", "source_save": "حفظ",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "حذف طبقة", "del": "حذف طبقة",
"move_down": "تحرك لأسفل طبقة", "move_down": "تحرك لأسفل طبقة",
"new": "طبقة جديدة", "new": "طبقة جديدة",
"rename": "تسمية الطبقة", "rename": "تسمية الطبقة",
"move_up": "تحرك لأعلى طبقة", "move_up": "تحرك لأعلى طبقة",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "حدد سلفا:", "select_predefined": "حدد سلفا:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "az", lang: "az",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "Cancel", "cancel": "Cancel",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Click to change fill color, shift-click to change stroke color", "palette_info": "Click to change fill color, shift-click to change stroke color",
"zoom_level": "Change zoom level", "zoom_level": "Change zoom level",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Change fill color", "fill_color": "Change fill color",
"stroke_color": "Change stroke color", "stroke_color": "Change stroke color",
"stroke_style": "Change stroke dash style", "stroke_style": "Change stroke dash style",
"stroke_width": "Change stroke width", "stroke_width": "Change stroke width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Change rotation angle", "angle": "Change rotation angle",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Change selected item opacity", "opacity": "Change selected item opacity",
"circle_cx": "Change circle's cx coordinate", "circle_cx": "Change circle's cx coordinate",
"circle_cy": "Change circle's cy coordinate", "circle_cy": "Change circle's cy coordinate",
"circle_r": "Change circle's radius", "circle_r": "Change circle's radius",
"ellipse_cx": "Change ellipse's cx coordinate", "ellipse_cx": "Change ellipse's cx coordinate",
"ellipse_cy": "Change ellipse's cy coordinate", "ellipse_cy": "Change ellipse's cy coordinate",
"ellipse_rx": "Change ellipse's x radius", "ellipse_rx": "Change ellipse's x radius",
"ellipse_ry": "Change ellipse's y radius", "ellipse_ry": "Change ellipse's y radius",
"line_x1": "Change line's starting x coordinate", "line_x1": "Change line's starting x coordinate",
"line_x2": "Change line's ending x coordinate", "line_x2": "Change line's ending x coordinate",
"line_y1": "Change line's starting y coordinate", "line_y1": "Change line's starting y coordinate",
"line_y2": "Change line's ending y coordinate", "line_y2": "Change line's ending y coordinate",
"rect_height": "Change rectangle height", "rect_height": "Change rectangle height",
"rect_width": "Change rectangle width", "rect_width": "Change rectangle width",
"corner_radius": "Change Rectangle Corner Radius", "corner_radius": "Change Rectangle Corner Radius",
"image_width": "Change image width", "image_width": "Change image width",
"image_height": "Change image height", "image_height": "Change image height",
"image_url": "Change URL", "image_url": "Change URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Change text contents", "text_contents": "Change text contents",
"font_family": "Change Font Family", "font_family": "Change Font Family",
"font_size": "Change Font Size", "font_size": "Change Font Size",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Change background color/opacity", "bkgnd_color_opac": "Change background color/opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Fit to all content", "fit_to_all": "Fit to all content",
"fit_to_canvas": "Fit to canvas", "fit_to_canvas": "Fit to canvas",
"fit_to_layer_content": "Fit to layer content", "fit_to_layer_content": "Fit to layer content",
"fit_to_sel": "Fit to selection", "fit_to_sel": "Fit to selection",
"align_relative_to": "Align relative to ...", "align_relative_to": "Align relative to ...",
"relativeTo": "relative to:", "relativeTo": "relative to:",
"page": "page", "page": "page",
"largest_object": "largest object", "largest_object": "largest object",
"selected_objects": "selected objects", "selected_objects": "selected objects",
"smallest_object": "smallest object", "smallest_object": "smallest object",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Open SVG", "open_doc": "Open SVG",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Align Center", "align_center": "Align Center",
"align_left": "Align Left", "align_left": "Align Left",
"align_middle": "Align Middle", "align_middle": "Align Middle",
"align_right": "Align Right", "align_right": "Align Right",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Undo", "undo": "Undo",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Group Elements", "group_elements": "Group Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Apply Changes", "source_save": "Apply Changes",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"new": "New Layer", "new": "New Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Select predefined:", "select_predefined": "Select predefined:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "be", lang: "be",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Захаваць", "ok": "Захаваць",
"cancel": "Адмена", "cancel": "Адмена",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Націсніце для змены колеру залівання, Shift-Click змяніць обводка", "palette_info": "Націсніце для змены колеру залівання, Shift-Click змяніць обводка",
"zoom_level": "Змяненне маштабу", "zoom_level": "Змяненне маштабу",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Змяненне колеру залівання", "fill_color": "Змяненне колеру залівання",
"stroke_color": "Змяненне колеру інсульт", "stroke_color": "Змяненне колеру інсульт",
"stroke_style": "Змяненне стылю інсульт працяжнік", "stroke_style": "Змяненне стылю інсульт працяжнік",
"stroke_width": "Змены шырыня штрых", "stroke_width": "Змены шырыня штрых",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Змены вугла павароту", "angle": "Змены вугла павароту",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Старонка абранага пункта непразрыстасці", "opacity": "Старонка абранага пункта непразрыстасці",
"circle_cx": "CX змене круга каардынаты", "circle_cx": "CX змене круга каардынаты",
"circle_cy": "Змены гуртка CY каардынаты", "circle_cy": "Змены гуртка CY каардынаты",
"circle_r": "Старонка круга&#39;s радыус", "circle_r": "Старонка круга&#39;s радыус",
"ellipse_cx": "Змены эліпса CX каардынаты", "ellipse_cx": "Змены эліпса CX каардынаты",
"ellipse_cy": "Змены эліпса CY каардынаты", "ellipse_cy": "Змены эліпса CY каардынаты",
"ellipse_rx": "Х змяненні эліпса радыюсам", "ellipse_rx": "Х змяненні эліпса радыюсам",
"ellipse_ry": "Змены у эліпса радыюсам", "ellipse_ry": "Змены у эліпса радыюсам",
"line_x1": "Змены лінія пачынае каардынаты х", "line_x1": "Змены лінія пачынае каардынаты х",
"line_x2": "Змяненне за перыяд, скончыўся лінія каардынаты х", "line_x2": "Змяненне за перыяд, скончыўся лінія каардынаты х",
"line_y1": "Змены лінія пачынае Y каардынаты", "line_y1": "Змены лінія пачынае Y каардынаты",
"line_y2": "Змяненне за перыяд, скончыўся лінія Y каардынаты", "line_y2": "Змяненне за перыяд, скончыўся лінія Y каардынаты",
"rect_height": "Змены прастакутнік вышынёй", "rect_height": "Змены прастакутнік вышынёй",
"rect_width": "Змяненне шырыні прамавугольніка", "rect_width": "Змяненне шырыні прамавугольніка",
"corner_radius": "Змены прастакутнік Corner Radius", "corner_radius": "Змены прастакутнік Corner Radius",
"image_width": "Змены шырыня выявы", "image_width": "Змены шырыня выявы",
"image_height": "Змена вышыні выявы", "image_height": "Змена вышыні выявы",
"image_url": "Змяніць URL", "image_url": "Змяніць URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Змяненне зместу тэксту", "text_contents": "Змяненне зместу тэксту",
"font_family": "Змены Сямейства шрыфтоў", "font_family": "Змены Сямейства шрыфтоў",
"font_size": "Змяніць памер шрыфта", "font_size": "Змяніць памер шрыфта",
"bold": "Тоўсты тэкст", "bold": "Тоўсты тэкст",
"italic": "Нахілены тэкст" "italic": "Нахілены тэкст"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Змяненне колеру фону / непразрыстасць", "bkgnd_color_opac": "Змяненне колеру фону / непразрыстасць",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Па памеры ўтрымання", "fitToContent": "Па памеры ўтрымання",
"fit_to_all": "Па памеру ўсе змесціва", "fit_to_all": "Па памеру ўсе змесціва",
"fit_to_canvas": "Памер палатна", "fit_to_canvas": "Памер палатна",
"fit_to_layer_content": "По размеру слой ўтрымання", "fit_to_layer_content": "По размеру слой ўтрымання",
"fit_to_sel": "Выбар памеру", "fit_to_sel": "Выбар памеру",
"align_relative_to": "Выраўнаваць па дачыненні да ...", "align_relative_to": "Выраўнаваць па дачыненні да ...",
"relativeTo": "па параўнанні з:", "relativeTo": "па параўнанні з:",
"page": "старонка", "page": "старонка",
"largest_object": "найбуйнейшы аб&#39;ект", "largest_object": "найбуйнейшы аб&#39;ект",
"selected_objects": "выбранымі аб&#39;ектамі", "selected_objects": "выбранымі аб&#39;ектамі",
"smallest_object": "маленькі аб&#39;ект", "smallest_object": "маленькі аб&#39;ект",
"new_doc": "Новае выява", "new_doc": "Новае выява",
"open_doc": "Адкрыць выява", "open_doc": "Адкрыць выява",
"export_img": "Export", "export_img": "Export",
"save_doc": "Захаваць малюнак", "save_doc": "Захаваць малюнак",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Лінаваць па ніжнім краю", "align_bottom": "Лінаваць па ніжнім краю",
"align_center": "Лінаваць па цэнтру", "align_center": "Лінаваць па цэнтру",
"align_left": "Па левым краю", "align_left": "Па левым краю",
"align_middle": "Выраўнаваць Блізкага", "align_middle": "Выраўнаваць Блізкага",
"align_right": "Па правым краю", "align_right": "Па правым краю",
"align_top": "Лінаваць па верхнім краю", "align_top": "Лінаваць па верхнім краю",
"mode_select": "Выберыце інструмент", "mode_select": "Выберыце інструмент",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Свабоднай рукі Прастакутнік", "mode_fhrect": "Свабоднай рукі Прастакутнік",
"mode_ellipse": "Эліпс", "mode_ellipse": "Эліпс",
"mode_circle": "Круг", "mode_circle": "Круг",
"mode_fhellipse": "Свабоднай рукі Эліпс", "mode_fhellipse": "Свабоднай рукі Эліпс",
"mode_path": "Poly Tool", "mode_path": "Poly Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Тэкст Tool", "mode_text": "Тэкст Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Адмяніць", "undo": "Адмяніць",
"redo": "Паўтор", "redo": "Паўтор",
"tool_source": "Змяніць зыходны", "tool_source": "Змяніць зыходны",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Група элементаў", "group_elements": "Група элементаў",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Элементы Разгруппировать", "ungroup": "Элементы Разгруппировать",
"docprops": "Уласцівасці дакумента", "docprops": "Уласцівасці дакумента",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Перамясціць уніз", "move_bottom": "Перамясціць уніз",
"move_top": "Перамясціць угару", "move_top": "Перамясціць угару",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Захаваць", "source_save": "Захаваць",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Выдаліць слой", "del": "Выдаліць слой",
"move_down": "Перамясціць слой на", "move_down": "Перамясціць слой на",
"new": "Новы слой", "new": "Новы слой",
"rename": "Перайменаваць Слой", "rename": "Перайменаваць Слой",
"move_up": "Перамяшчэнне слоя да", "move_up": "Перамяшчэнне слоя да",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Выберыце прадвызначэньні:", "select_predefined": "Выберыце прадвызначэньні:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "bg", lang: "bg",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Спасявам", "ok": "Спасявам",
"cancel": "Отказ", "cancel": "Отказ",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Кликнете, за да промени попълнете цвят, на смени, кликнете да променят цвета си удар", "palette_info": "Кликнете, за да промени попълнете цвят, на смени, кликнете да променят цвета си удар",
"zoom_level": "Промяна на ниво на мащабиране", "zoom_level": "Промяна на ниво на мащабиране",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Промяна попълнете цвят", "fill_color": "Промяна попълнете цвят",
"stroke_color": "Промяна на инсулт цвят", "stroke_color": "Промяна на инсулт цвят",
"stroke_style": "Промяна на стила удар тире", "stroke_style": "Промяна на стила удар тире",
"stroke_width": "Промяна на ширината инсулт", "stroke_width": "Промяна на ширината инсулт",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Промяна ъгъл на завъртане", "angle": "Промяна ъгъл на завъртане",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Промяна на избрания елемент непрозрачност", "opacity": "Промяна на избрания елемент непрозрачност",
"circle_cx": "CX Промяна кръг на координатната", "circle_cx": "CX Промяна кръг на координатната",
"circle_cy": "Промяна кръг&#39;s CY координира", "circle_cy": "Промяна кръг&#39;s CY координира",
"circle_r": "Промяна кръг радиус", "circle_r": "Промяна кръг радиус",
"ellipse_cx": "Промяна на елипса&#39;s CX координира", "ellipse_cx": "Промяна на елипса&#39;s CX координира",
"ellipse_cy": "Промяна на елипса&#39;s CY координира", "ellipse_cy": "Промяна на елипса&#39;s CY координира",
"ellipse_rx": "Промяна на елипса&#39;s X радиус", "ellipse_rx": "Промяна на елипса&#39;s X радиус",
"ellipse_ry": "Промяна на елипса&#39;s Y радиус", "ellipse_ry": "Промяна на елипса&#39;s Y радиус",
"line_x1": "Промяна на линия, започваща х координира", "line_x1": "Промяна на линия, започваща х координира",
"line_x2": "Промяна на линията приключва х координира", "line_x2": "Промяна на линията приключва х координира",
"line_y1": "Промяна линия, започваща Y координира", "line_y1": "Промяна линия, започваща Y координира",
"line_y2": "Промяна на линията приключва Y координира", "line_y2": "Промяна на линията приключва Y координира",
"rect_height": "Промяна на правоъгълник височина", "rect_height": "Промяна на правоъгълник височина",
"rect_width": "Промяна на правоъгълник ширина", "rect_width": "Промяна на правоъгълник ширина",
"corner_radius": "Промяна на правоъгълник Corner Radius", "corner_radius": "Промяна на правоъгълник Corner Radius",
"image_width": "Промяна на изображението ширина", "image_width": "Промяна на изображението ширина",
"image_height": "Промяна на изображението височина", "image_height": "Промяна на изображението височина",
"image_url": "Промяна на URL", "image_url": "Промяна на URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Промяна на текст съдържание", "text_contents": "Промяна на текст съдържание",
"font_family": "Промяна на шрифта Семейство", "font_family": "Промяна на шрифта Семейство",
"font_size": "Промени размера на буквите", "font_size": "Промени размера на буквите",
"bold": "Получер текст", "bold": "Получер текст",
"italic": "Курсив текст" "italic": "Курсив текст"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Промяна на цвета на фона / непрозрачност", "bkgnd_color_opac": "Промяна на цвета на фона / непрозрачност",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit към съдържание", "fitToContent": "Fit към съдържание",
"fit_to_all": "Побери цялото съдържание", "fit_to_all": "Побери цялото съдържание",
"fit_to_canvas": "Fit на платно", "fit_to_canvas": "Fit на платно",
"fit_to_layer_content": "Fit да слой съдържание", "fit_to_layer_content": "Fit да слой съдържание",
"fit_to_sel": "Fit за подбор", "fit_to_sel": "Fit за подбор",
"align_relative_to": "Привеждане в сравнение с ...", "align_relative_to": "Привеждане в сравнение с ...",
"relativeTo": "в сравнение с:", "relativeTo": "в сравнение с:",
"page": "страница", "page": "страница",
"largest_object": "най-големият обект", "largest_object": "най-големият обект",
"selected_objects": "избраните обекти", "selected_objects": "избраните обекти",
"smallest_object": "най-малката обект", "smallest_object": "най-малката обект",
"new_doc": "Ню Имидж", "new_doc": "Ню Имидж",
"open_doc": "Отворете изображението", "open_doc": "Отворете изображението",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Привеждане Отдолу", "align_bottom": "Привеждане Отдолу",
"align_center": "Подравняване в средата", "align_center": "Подравняване в средата",
"align_left": "Подравняване вляво", "align_left": "Подравняване вляво",
"align_middle": "Привеждане в Близкия", "align_middle": "Привеждане в Близкия",
"align_right": "Подравняване надясно", "align_right": "Подравняване надясно",
"align_top": "Привеждане Топ", "align_top": "Привеждане Топ",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Свободен Употребявани правоъгълник", "mode_fhrect": "Свободен Употребявани правоъгълник",
"mode_ellipse": "Елипса", "mode_ellipse": "Елипса",
"mode_circle": "Кръгът", "mode_circle": "Кръгът",
"mode_fhellipse": "Свободен Употребявани Елипса", "mode_fhellipse": "Свободен Употребявани Елипса",
"mode_path": "Поли Tool", "mode_path": "Поли Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Текст Оръдие", "mode_text": "Текст Оръдие",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Отмени", "undo": "Отмени",
"redo": "Възстановяване", "redo": "Възстановяване",
"tool_source": "Редактиране Източник", "tool_source": "Редактиране Източник",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Група Елементи", "group_elements": "Група Елементи",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Разгрупирай Елементи", "ungroup": "Разгрупирай Елементи",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Премести надолу", "move_bottom": "Премести надолу",
"move_top": "Премести в началото", "move_top": "Премести в началото",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Спасявам", "source_save": "Спасявам",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Изтриване на слой", "del": "Изтриване на слой",
"move_down": "Move слой надолу", "move_down": "Move слой надолу",
"new": "Нов слой", "new": "Нов слой",
"rename": "Преименуване Layer", "rename": "Преименуване Layer",
"move_up": "Move Up Layer", "move_up": "Move Up Layer",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Изберете предварително:", "select_predefined": "Изберете предварително:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "ca", lang: "ca",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Salvar", "ok": "Salvar",
"cancel": "Cancel", "cancel": "Cancel",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Feu clic per canviar el color de farciment, shift-clic per canviar el color del traç", "palette_info": "Feu clic per canviar el color de farciment, shift-clic per canviar el color del traç",
"zoom_level": "Canviar el nivell de zoom", "zoom_level": "Canviar el nivell de zoom",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Canviar el color de farciment", "fill_color": "Canviar el color de farciment",
"stroke_color": "Canviar el color del traç", "stroke_color": "Canviar el color del traç",
"stroke_style": "Canviar estil de traç guió", "stroke_style": "Canviar estil de traç guió",
"stroke_width": "Canviar l&#39;amplada del traç", "stroke_width": "Canviar l&#39;amplada del traç",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Canviar l&#39;angle de rotació", "angle": "Canviar l&#39;angle de rotació",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Canviar la opacitat tema seleccionat", "opacity": "Canviar la opacitat tema seleccionat",
"circle_cx": "CX cercle Canvi de coordenades", "circle_cx": "CX cercle Canvi de coordenades",
"circle_cy": "Cercle Canvi CY coordinar", "circle_cy": "Cercle Canvi CY coordinar",
"circle_r": "Ràdio de cercle Canvi", "circle_r": "Ràdio de cercle Canvi",
"ellipse_cx": "Canviar lipse CX coordinar", "ellipse_cx": "Canviar lipse CX coordinar",
"ellipse_cy": "Lipse Canvi CY coordinar", "ellipse_cy": "Lipse Canvi CY coordinar",
"ellipse_rx": "Ràdio x lipse Canvi", "ellipse_rx": "Ràdio x lipse Canvi",
"ellipse_ry": "Ràdio i lipse Canvi", "ellipse_ry": "Ràdio i lipse Canvi",
"line_x1": "Canviar la línia de partida de la coordenada x", "line_x1": "Canviar la línia de partida de la coordenada x",
"line_x2": "Canviar la línia d&#39;hores de coordenada x", "line_x2": "Canviar la línia d&#39;hores de coordenada x",
"line_y1": "Canviar la línia de partida i de coordinar", "line_y1": "Canviar la línia de partida i de coordinar",
"line_y2": "Canviar la línia d&#39;hores de coordenada", "line_y2": "Canviar la línia d&#39;hores de coordenada",
"rect_height": "Rectangle d&#39;alçada Canvi", "rect_height": "Rectangle d&#39;alçada Canvi",
"rect_width": "Ample rectangle Canvi", "rect_width": "Ample rectangle Canvi",
"corner_radius": "Canviar Rectangle Corner Radius", "corner_radius": "Canviar Rectangle Corner Radius",
"image_width": "Amplada de la imatge Canvi", "image_width": "Amplada de la imatge Canvi",
"image_height": "Canviar l&#39;altura de la imatge", "image_height": "Canviar l&#39;altura de la imatge",
"image_url": "Canviar URL", "image_url": "Canviar URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Contingut del text", "text_contents": "Contingut del text",
"font_family": "Canviar la font Família", "font_family": "Canviar la font Família",
"font_size": "Change Font Size", "font_size": "Change Font Size",
"bold": "Text en negreta", "bold": "Text en negreta",
"italic": "Text en cursiva" "italic": "Text en cursiva"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Color de fons / opacitat", "bkgnd_color_opac": "Color de fons / opacitat",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Ajustar al contingut", "fitToContent": "Ajustar al contingut",
"fit_to_all": "Ajustar a tot el contingut", "fit_to_all": "Ajustar a tot el contingut",
"fit_to_canvas": "Ajustar a la lona", "fit_to_canvas": "Ajustar a la lona",
"fit_to_layer_content": "Ajustar al contingut de la capa d&#39;", "fit_to_layer_content": "Ajustar al contingut de la capa d&#39;",
"fit_to_sel": "Ajustar a la selecció", "fit_to_sel": "Ajustar a la selecció",
"align_relative_to": "Alinear pel que fa a ...", "align_relative_to": "Alinear pel que fa a ...",
"relativeTo": "en relació amb:", "relativeTo": "en relació amb:",
"page": "Pàgina", "page": "Pàgina",
"largest_object": "objecte més gran", "largest_object": "objecte més gran",
"selected_objects": "objectes escollits", "selected_objects": "objectes escollits",
"smallest_object": "objecte més petit", "smallest_object": "objecte més petit",
"new_doc": "Nova imatge", "new_doc": "Nova imatge",
"open_doc": "Obrir imatge", "open_doc": "Obrir imatge",
"export_img": "Export", "export_img": "Export",
"save_doc": "Guardar imatge", "save_doc": "Guardar imatge",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Alinear baix", "align_bottom": "Alinear baix",
"align_center": "Alinear al centre", "align_center": "Alinear al centre",
"align_left": "Alinear a l&#39;esquerra", "align_left": "Alinear a l&#39;esquerra",
"align_middle": "Alinear Medi", "align_middle": "Alinear Medi",
"align_right": "Alinear a la dreta", "align_right": "Alinear a la dreta",
"align_top": "Alinear a dalt", "align_top": "Alinear a dalt",
"mode_select": "Eina de selecció", "mode_select": "Eina de selecció",
"mode_fhpath": "Eina Llapis", "mode_fhpath": "Eina Llapis",
"mode_line": "L&#39;eina", "mode_line": "L&#39;eina",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "Lipse", "mode_ellipse": "Lipse",
"mode_circle": "Cercle", "mode_circle": "Cercle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Eina de text", "mode_text": "Eina de text",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Desfés", "undo": "Desfés",
"redo": "Refer", "redo": "Refer",
"tool_source": "Font Edita", "tool_source": "Font Edita",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Elements de Grup de", "group_elements": "Elements de Grup de",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Desagrupar elements", "ungroup": "Desagrupar elements",
"docprops": "Propietats del document", "docprops": "Propietats del document",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Mou al final", "move_bottom": "Mou al final",
"move_top": "Mou al principi", "move_top": "Mou al principi",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Salvar", "source_save": "Salvar",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Eliminar capa", "del": "Eliminar capa",
"move_down": "Mou la capa de Down", "move_down": "Mou la capa de Down",
"new": "Nova capa", "new": "Nova capa",
"rename": "Canvieu el nom de la capa", "rename": "Canvieu el nom de la capa",
"move_up": "Mou la capa Up", "move_up": "Mou la capa Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Seleccioneu predefinides:", "select_predefined": "Seleccioneu predefinides:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "cs", lang: "cs",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Uložit", "ok": "Uložit",
"cancel": "Storno", "cancel": "Storno",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "šipka dolů", "key_down": "šipka dolů",
"key_up": "šipka nahoru", "key_up": "šipka nahoru",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Běží na" "powered_by": "Běží na"
}, },
ui: { ui: {
"toggle_stroke_tools": "Zobrazit/schovat více možností", "toggle_stroke_tools": "Zobrazit/schovat více možností",
"palette_info": "Kliknutím změníte barvu výplně, kliknutím současně s klávesou shift změníte barvu čáry", "palette_info": "Kliknutím změníte barvu výplně, kliknutím současně s klávesou shift změníte barvu čáry",
"zoom_level": "Změna přiblížení", "zoom_level": "Změna přiblížení",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Změnit ID elementu", "id": "Změnit ID elementu",
"fill_color": "Změnit barvu výplně", "fill_color": "Změnit barvu výplně",
"stroke_color": "Změnit barvu čáry", "stroke_color": "Změnit barvu čáry",
"stroke_style": "Změnit styl čáry", "stroke_style": "Změnit styl čáry",
"stroke_width": "Změnit šířku čáry", "stroke_width": "Změnit šířku čáry",
"pos_x": "Změnit souřadnici X", "pos_x": "Změnit souřadnici X",
"pos_y": "Změnit souřadnici Y", "pos_y": "Změnit souřadnici Y",
"linecap_butt": "Konec úsečky: přesný", "linecap_butt": "Konec úsečky: přesný",
"linecap_round": "Konec úsečky: zaoblený", "linecap_round": "Konec úsečky: zaoblený",
"linecap_square": "Konec úsečky: s čtvercovým přesahem", "linecap_square": "Konec úsečky: s čtvercovým přesahem",
"linejoin_bevel": "Styl napojení úseček: zkosené", "linejoin_bevel": "Styl napojení úseček: zkosené",
"linejoin_miter": "Styl napojení úseček: ostré", "linejoin_miter": "Styl napojení úseček: ostré",
"linejoin_round": "Styl napojení úseček: oblé", "linejoin_round": "Styl napojení úseček: oblé",
"angle": "Změnit úhel natočení", "angle": "Změnit úhel natočení",
"blur": "Změnit rozostření", "blur": "Změnit rozostření",
"opacity": "Změnit průhlednost objektů", "opacity": "Změnit průhlednost objektů",
"circle_cx": "Změnit souřadnici X středu kružnice", "circle_cx": "Změnit souřadnici X středu kružnice",
"circle_cy": "Změnit souřadnici Y středu kružnice", "circle_cy": "Změnit souřadnici Y středu kružnice",
"circle_r": "Změnit poloměr kružnice", "circle_r": "Změnit poloměr kružnice",
"ellipse_cx": "Změnit souřadnici X středu elipsy", "ellipse_cx": "Změnit souřadnici X středu elipsy",
"ellipse_cy": "Změnit souřadnici Y středu elipsy", "ellipse_cy": "Změnit souřadnici Y středu elipsy",
"ellipse_rx": "Změnit poloměr X elipsy", "ellipse_rx": "Změnit poloměr X elipsy",
"ellipse_ry": "Změnit poloměr Y elipsy", "ellipse_ry": "Změnit poloměr Y elipsy",
"line_x1": "Změnit počáteční souřadnici X úsečky", "line_x1": "Změnit počáteční souřadnici X úsečky",
"line_x2": "Změnit koncovou souřadnici X úsečky", "line_x2": "Změnit koncovou souřadnici X úsečky",
"line_y1": "Změnit počáteční souřadnici Y úsečky", "line_y1": "Změnit počáteční souřadnici Y úsečky",
"line_y2": "Změnit koncovou souřadnici X úsečky", "line_y2": "Změnit koncovou souřadnici X úsečky",
"rect_height": "Změnit výšku obdélníku", "rect_height": "Změnit výšku obdélníku",
"rect_width": "Změnit šířku obdélníku", "rect_width": "Změnit šířku obdélníku",
"corner_radius": "Změnit zaoblení obdélníku", "corner_radius": "Změnit zaoblení obdélníku",
"image_width": "Změnit šířku dokumentu", "image_width": "Změnit šířku dokumentu",
"image_height": "Změnit výšku dokumentu", "image_height": "Změnit výšku dokumentu",
"image_url": "Změnit adresu URL", "image_url": "Změnit adresu URL",
"node_x": "Změnit souřadnici X uzlu", "node_x": "Změnit souřadnici X uzlu",
"node_y": "Změnit souřadnici Y uzlu", "node_y": "Změnit souřadnici Y uzlu",
"seg_type": "Změnit typ segmentu", "seg_type": "Změnit typ segmentu",
"straight_segments": "úsečka", "straight_segments": "úsečka",
"curve_segments": "křivka", "curve_segments": "křivka",
"text_contents": "Změnit text", "text_contents": "Změnit text",
"font_family": "Změnit font", "font_family": "Změnit font",
"font_size": "Změnit velikost písma", "font_size": "Změnit velikost písma",
"bold": "Tučně", "bold": "Tučně",
"italic": "Kurzíva" "italic": "Kurzíva"
}, },
tools: { tools: {
"main_menu": "Hlavní menu", "main_menu": "Hlavní menu",
"bkgnd_color_opac": "Změnit barvu a průhlednost pozadí", "bkgnd_color_opac": "Změnit barvu a průhlednost pozadí",
"connector_no_arrow": "Bez šipky", "connector_no_arrow": "Bez šipky",
"fitToContent": "přizpůsobit obsahu", "fitToContent": "přizpůsobit obsahu",
"fit_to_all": "Přizpůsobit veškerému obsahu", "fit_to_all": "Přizpůsobit veškerému obsahu",
"fit_to_canvas": "Přizpůsobit stránce", "fit_to_canvas": "Přizpůsobit stránce",
"fit_to_layer_content": "Přizpůsobit obsahu vrstvy", "fit_to_layer_content": "Přizpůsobit obsahu vrstvy",
"fit_to_sel": "Přizpůsobit výběru", "fit_to_sel": "Přizpůsobit výběru",
"align_relative_to": "Zarovnat relativně", "align_relative_to": "Zarovnat relativně",
"relativeTo": "relatativně k:", "relativeTo": "relatativně k:",
"page": "stránce", "page": "stránce",
"largest_object": "největšímu objektu", "largest_object": "největšímu objektu",
"selected_objects": "zvoleným objektům", "selected_objects": "zvoleným objektům",
"smallest_object": "nejmenšímu objektu", "smallest_object": "nejmenšímu objektu",
"new_doc": "Nový dokument", "new_doc": "Nový dokument",
"open_doc": "Otevřít dokument", "open_doc": "Otevřít dokument",
"export_img": "Export", "export_img": "Export",
"save_doc": "Uložit dokument", "save_doc": "Uložit dokument",
"import_doc": "Importovat SVG", "import_doc": "Importovat SVG",
"align_to_page": "Zarovnat element na stránku", "align_to_page": "Zarovnat element na stránku",
"align_bottom": "Zarovnat dolů", "align_bottom": "Zarovnat dolů",
"align_center": "Zarovnat nastřed", "align_center": "Zarovnat nastřed",
"align_left": "Zarovnat doleva", "align_left": "Zarovnat doleva",
"align_middle": "Zarovnat nastřed", "align_middle": "Zarovnat nastřed",
"align_right": "Zarovnat doprava", "align_right": "Zarovnat doprava",
"align_top": "Zarovnat nahoru", "align_top": "Zarovnat nahoru",
"mode_select": "Výběr a transformace objektů", "mode_select": "Výběr a transformace objektů",
"mode_fhpath": "Kresba od ruky", "mode_fhpath": "Kresba od ruky",
"mode_line": "Úsečka", "mode_line": "Úsečka",
"mode_connect": "Spojit dva objekty", "mode_connect": "Spojit dva objekty",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Obdélník volnou rukou", "mode_fhrect": "Obdélník volnou rukou",
"mode_ellipse": "Elipsa", "mode_ellipse": "Elipsa",
"mode_circle": "Kružnice", "mode_circle": "Kružnice",
"mode_fhellipse": "Elipsa volnou rukou", "mode_fhellipse": "Elipsa volnou rukou",
"mode_path": "Křivka", "mode_path": "Křivka",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text", "mode_text": "Text",
"mode_image": "Obrázek", "mode_image": "Obrázek",
"mode_zoom": "Přiblížení", "mode_zoom": "Přiblížení",
"mode_eyedropper": "Kapátko", "mode_eyedropper": "Kapátko",
"no_embed": "POZOR: Obrázek nelze uložit s dokumentem. Bude zobrazován z adresáře, kde se nyní nachází.", "no_embed": "POZOR: Obrázek nelze uložit s dokumentem. Bude zobrazován z adresáře, kde se nyní nachází.",
"undo": "Zpět", "undo": "Zpět",
"redo": "Znovu", "redo": "Znovu",
"tool_source": "Upravovat SVG kód", "tool_source": "Upravovat SVG kód",
"wireframe_mode": "Zobrazit jen kostru", "wireframe_mode": "Zobrazit jen kostru",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Seskupit objekty", "group_elements": "Seskupit objekty",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Objekt na křivku", "to_path": "Objekt na křivku",
"reorient_path": "Změna orientace křivky", "reorient_path": "Změna orientace křivky",
"ungroup": "Zrušit seskupení", "ungroup": "Zrušit seskupení",
"docprops": "Vlastnosti dokumentu", "docprops": "Vlastnosti dokumentu",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Vrstvu úplně dospodu", "move_bottom": "Vrstvu úplně dospodu",
"move_top": "Vrstvu úplně nahoru", "move_top": "Vrstvu úplně nahoru",
"node_clone": "Vložit nový uzel", "node_clone": "Vložit nový uzel",
"node_delete": "Ostranit uzel", "node_delete": "Ostranit uzel",
"node_link": "Provázat ovládací body uzlu", "node_link": "Provázat ovládací body uzlu",
"add_subpath": "Přidat další součást křivky", "add_subpath": "Přidat další součást křivky",
"openclose_path": "Otevřít/zavřít součást křivky", "openclose_path": "Otevřít/zavřít součást křivky",
"source_save": "Uložit", "source_save": "Uložit",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Vrstva", "layer": "Vrstva",
"layers": "Layers", "layers": "Layers",
"del": "Odstranit vrstvu", "del": "Odstranit vrstvu",
"move_down": "Přesunout vrstvu níž", "move_down": "Přesunout vrstvu níž",
"new": "Přidat vrstvu", "new": "Přidat vrstvu",
"rename": "Přejmenovat vrstvu", "rename": "Přejmenovat vrstvu",
"move_up": "Přesunout vrstvu výš", "move_up": "Přesunout vrstvu výš",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Přesunout objekty do:", "move_elems_to": "Přesunout objekty do:",
"move_selected": "Přesunout objekty do jiné vrstvy" "move_selected": "Přesunout objekty do jiné vrstvy"
}, },
config: { config: {
"image_props": "Vlastnosti dokumentu", "image_props": "Vlastnosti dokumentu",
"doc_title": "Název", "doc_title": "Název",
"doc_dims": "Vlastní velikost", "doc_dims": "Vlastní velikost",
"included_images": "Vložené obrázky", "included_images": "Vložené obrázky",
"image_opt_embed": "Vkládat do dokumentu", "image_opt_embed": "Vkládat do dokumentu",
"image_opt_ref": "Jen odkazem", "image_opt_ref": "Jen odkazem",
"editor_prefs": "Nastavení editoru", "editor_prefs": "Nastavení editoru",
"icon_size": "Velikost ikon", "icon_size": "Velikost ikon",
"language": "Jazyk", "language": "Jazyk",
"background": "Obrázek v pozadí editoru", "background": "Obrázek v pozadí editoru",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Pozor: obrázek v pozadí nebude uložen jako součást dokumentu.", "editor_bg_note": "Pozor: obrázek v pozadí nebude uložen jako součást dokumentu.",
"icon_large": "velké", "icon_large": "velké",
"icon_medium": "střední", "icon_medium": "střední",
"icon_small": "malé", "icon_small": "malé",
"icon_xlarge": "největší", "icon_xlarge": "největší",
"select_predefined": "vybrat předdefinovaný:", "select_predefined": "vybrat předdefinovaný:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Nevhodná hodnota", "invalidAttrValGiven": "Nevhodná hodnota",
"noContentToFitTo": "Vyberte oblast pro přizpůsobení", "noContentToFitTo": "Vyberte oblast pro přizpůsobení",
"dupeLayerName": "Taková vrstva už bohužel existuje", "dupeLayerName": "Taková vrstva už bohužel existuje",
"enterUniqueLayerName": "Zadejte prosím jedinečné jméno pro vrstvu", "enterUniqueLayerName": "Zadejte prosím jedinečné jméno pro vrstvu",
"enterNewLayerName": "Zadejte prosím jméno pro novou vrstvu", "enterNewLayerName": "Zadejte prosím jméno pro novou vrstvu",
"layerHasThatName": "Vrstva už se tak jmenuje", "layerHasThatName": "Vrstva už se tak jmenuje",
"QmoveElemsToLayer": "Opravdu chcete přesunout vybrané objekty do vrstvy '%s'?", "QmoveElemsToLayer": "Opravdu chcete přesunout vybrané objekty do vrstvy '%s'?",
"QwantToClear": "Opravdu chcete smazat současný dokument?\nHistorie změn bude také smazána.", "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!", "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?", "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?", "QignoreSourceChanges": "Opravdu chcete stornovat změny provedené v SVG kódu?",
"featNotSupported": "Tato vlastnost ještě není k dispozici", "featNotSupported": "Tato vlastnost ještě není k dispozici",
"enterNewImgURL": "Vložte adresu URL, na které se nachází vkládaný obrázek", "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ě.", "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.", "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: ", "noteTheseIssues": "Mohou se vyskytnout následující problémy: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "cy", lang: "cy",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Cadw", "ok": "Cadw",
"cancel": "Canslo", "cancel": "Canslo",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Cliciwch yma i lenwi newid lliw, sifft-cliciwch i newid lliw strôc", "palette_info": "Cliciwch yma i lenwi newid lliw, sifft-cliciwch i newid lliw strôc",
"zoom_level": "Newid lefel chwyddo", "zoom_level": "Newid lefel chwyddo",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Newid lliw llenwi", "fill_color": "Newid lliw llenwi",
"stroke_color": "Newid lliw strôc", "stroke_color": "Newid lliw strôc",
"stroke_style": "Newid arddull strôc diferyn", "stroke_style": "Newid arddull strôc diferyn",
"stroke_width": "Lled strôc Newid", "stroke_width": "Lled strôc Newid",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Ongl cylchdro Newid", "angle": "Ongl cylchdro Newid",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Newid dewis Didreiddiad eitem", "opacity": "Newid dewis Didreiddiad eitem",
"circle_cx": "CX Newid cylch yn cydlynu", "circle_cx": "CX Newid cylch yn cydlynu",
"circle_cy": "Newid cylch&#39;s cy gydgysylltu", "circle_cy": "Newid cylch&#39;s cy gydgysylltu",
"circle_r": "Newid radiws cylch yn", "circle_r": "Newid radiws cylch yn",
"ellipse_cx": "Newid Ellipse yn CX gydgysylltu", "ellipse_cx": "Newid Ellipse yn CX gydgysylltu",
"ellipse_cy": "Newid Ellipse yn cydlynu cy", "ellipse_cy": "Newid Ellipse yn cydlynu cy",
"ellipse_rx": "Radiws Newid Ellipse&#39;s x", "ellipse_rx": "Radiws Newid Ellipse&#39;s x",
"ellipse_ry": "Radiws Newid Ellipse yn y", "ellipse_ry": "Radiws Newid Ellipse yn y",
"line_x1": "Newid llinell yn cychwyn x gydgysylltu", "line_x1": "Newid llinell yn cychwyn x gydgysylltu",
"line_x2": "Newid llinell yn diweddu x gydgysylltu", "line_x2": "Newid llinell yn diweddu x gydgysylltu",
"line_y1": "Newid llinell ar y cychwyn yn cydlynu", "line_y1": "Newid llinell ar y cychwyn yn cydlynu",
"line_y2": "Newid llinell yn dod i ben y gydgysylltu", "line_y2": "Newid llinell yn dod i ben y gydgysylltu",
"rect_height": "Uchder petryal Newid", "rect_height": "Uchder petryal Newid",
"rect_width": "Lled petryal Newid", "rect_width": "Lled petryal Newid",
"corner_radius": "Newid Hirsgwâr Corner Radiws", "corner_radius": "Newid Hirsgwâr Corner Radiws",
"image_width": "Lled delwedd Newid", "image_width": "Lled delwedd Newid",
"image_height": "Uchder delwedd Newid", "image_height": "Uchder delwedd Newid",
"image_url": "Newid URL", "image_url": "Newid URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Cynnwys testun Newid", "text_contents": "Cynnwys testun Newid",
"font_family": "Newid Font Teulu", "font_family": "Newid Font Teulu",
"font_size": "Newid Maint Ffont", "font_size": "Newid Maint Ffont",
"bold": "Testun Bras", "bold": "Testun Bras",
"italic": "Italig Testun" "italic": "Italig Testun"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Newid lliw cefndir / Didreiddiad", "bkgnd_color_opac": "Newid lliw cefndir / Didreiddiad",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Ffit i Cynnwys", "fitToContent": "Ffit i Cynnwys",
"fit_to_all": "Yn addas i bawb content", "fit_to_all": "Yn addas i bawb content",
"fit_to_canvas": "Ffit i ofyn", "fit_to_canvas": "Ffit i ofyn",
"fit_to_layer_content": "Ffit cynnwys haen i", "fit_to_layer_content": "Ffit cynnwys haen i",
"fit_to_sel": "Yn addas at ddewis", "fit_to_sel": "Yn addas at ddewis",
"align_relative_to": "Alinio perthynas i ...", "align_relative_to": "Alinio perthynas i ...",
"relativeTo": "cymharol i:", "relativeTo": "cymharol i:",
"page": "tudalen", "page": "tudalen",
"largest_object": "gwrthrych mwyaf", "largest_object": "gwrthrych mwyaf",
"selected_objects": "gwrthrychau etholedig", "selected_objects": "gwrthrychau etholedig",
"smallest_object": "lleiaf gwrthrych", "smallest_object": "lleiaf gwrthrych",
"new_doc": "Newydd Delwedd", "new_doc": "Newydd Delwedd",
"open_doc": "Delwedd Agored", "open_doc": "Delwedd Agored",
"export_img": "Export", "export_img": "Export",
"save_doc": "Cadw Delwedd", "save_doc": "Cadw Delwedd",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Alinio Gwaelod", "align_bottom": "Alinio Gwaelod",
"align_center": "Alinio Center", "align_center": "Alinio Center",
"align_left": "Alinio Chwith", "align_left": "Alinio Chwith",
"align_middle": "Alinio Canol", "align_middle": "Alinio Canol",
"align_right": "Alinio Hawl", "align_right": "Alinio Hawl",
"align_top": "Alinio Top", "align_top": "Alinio Top",
"mode_select": "Dewiswch Offer", "mode_select": "Dewiswch Offer",
"mode_fhpath": "Teclyn pensil", "mode_fhpath": "Teclyn pensil",
"mode_line": "Llinell Offer", "mode_line": "Llinell Offer",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Hand rhad ac am ddim Hirsgwâr", "mode_fhrect": "Hand rhad ac am ddim Hirsgwâr",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Cylch", "mode_circle": "Cylch",
"mode_fhellipse": "Rhad ac am ddim Hand Ellipse", "mode_fhellipse": "Rhad ac am ddim Hand Ellipse",
"mode_path": "Offer poly", "mode_path": "Offer poly",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Testun Offer", "mode_text": "Testun Offer",
"mode_image": "Offer Delwedd", "mode_image": "Offer Delwedd",
"mode_zoom": "Offer Chwyddo", "mode_zoom": "Offer Chwyddo",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Dadwneud", "undo": "Dadwneud",
"redo": "Ail-wneud", "redo": "Ail-wneud",
"tool_source": "Golygu Ffynhonnell", "tool_source": "Golygu Ffynhonnell",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Elfennau Grŵp", "group_elements": "Elfennau Grŵp",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Elfennau Ungroup", "ungroup": "Elfennau Ungroup",
"docprops": "Document Eiddo", "docprops": "Document Eiddo",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Symud i&#39;r Gwaelod", "move_bottom": "Symud i&#39;r Gwaelod",
"move_top": "Symud i&#39;r Top", "move_top": "Symud i&#39;r Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Cadw", "source_save": "Cadw",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Dileu Haen", "del": "Dileu Haen",
"move_down": "Symud Haen i Lawr", "move_down": "Symud Haen i Lawr",
"new": "Haen Newydd", "new": "Haen Newydd",
"rename": "Ail-enwi Haen", "rename": "Ail-enwi Haen",
"move_up": "Symud Haen Up", "move_up": "Symud Haen Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Rhagosodol Dewis:", "select_predefined": "Rhagosodol Dewis:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "da", lang: "da",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Gemme", "ok": "Gemme",
"cancel": "Annuller", "cancel": "Annuller",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Klik for at ændre fyldfarve, shift-klik for at ændre stregfarve", "palette_info": "Klik for at ændre fyldfarve, shift-klik for at ændre stregfarve",
"zoom_level": "Skift zoomniveau", "zoom_level": "Skift zoomniveau",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Skift fyldfarve", "fill_color": "Skift fyldfarve",
"stroke_color": "Skift stregfarve", "stroke_color": "Skift stregfarve",
"stroke_style": "Skift slagtilfælde Dash stil", "stroke_style": "Skift slagtilfælde Dash stil",
"stroke_width": "Skift slagtilfælde bredde", "stroke_width": "Skift slagtilfælde bredde",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Skift rotationsvinkel", "angle": "Skift rotationsvinkel",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Skift valgte element opacitet", "opacity": "Skift valgte element opacitet",
"circle_cx": "Skift cirklens cx koordinere", "circle_cx": "Skift cirklens cx koordinere",
"circle_cy": "Skift cirklens cy koordinere", "circle_cy": "Skift cirklens cy koordinere",
"circle_r": "Skift cirklens radius", "circle_r": "Skift cirklens radius",
"ellipse_cx": "Skift ellipse&#39;s cx koordinere", "ellipse_cx": "Skift ellipse&#39;s cx koordinere",
"ellipse_cy": "Skift ellipse&#39;s cy koordinere", "ellipse_cy": "Skift ellipse&#39;s cy koordinere",
"ellipse_rx": "Skift ellipse&#39;s x radius", "ellipse_rx": "Skift ellipse&#39;s x radius",
"ellipse_ry": "Skift ellipse&#39;s y radius", "ellipse_ry": "Skift ellipse&#39;s y radius",
"line_x1": "Skift linie&#39;s start x-koordinat", "line_x1": "Skift linie&#39;s start x-koordinat",
"line_x2": "Skift Line&#39;s slutter x-koordinat", "line_x2": "Skift Line&#39;s slutter x-koordinat",
"line_y1": "Skift linjens start y-koordinat", "line_y1": "Skift linjens start y-koordinat",
"line_y2": "Skift Line&#39;s slutter y-koordinat", "line_y2": "Skift Line&#39;s slutter y-koordinat",
"rect_height": "Skift rektangel højde", "rect_height": "Skift rektangel højde",
"rect_width": "Skift rektanglets bredde", "rect_width": "Skift rektanglets bredde",
"corner_radius": "Skift Rektangel Corner Radius", "corner_radius": "Skift Rektangel Corner Radius",
"image_width": "Skift billede bredde", "image_width": "Skift billede bredde",
"image_height": "Skift billede højde", "image_height": "Skift billede højde",
"image_url": "Skift webadresse", "image_url": "Skift webadresse",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Skift tekst indhold", "text_contents": "Skift tekst indhold",
"font_family": "Skift Font Family", "font_family": "Skift Font Family",
"font_size": "Skift skriftstørrelse", "font_size": "Skift skriftstørrelse",
"bold": "Fed tekst", "bold": "Fed tekst",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Skift baggrundsfarve / uigennemsigtighed", "bkgnd_color_opac": "Skift baggrundsfarve / uigennemsigtighed",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Tilpas til indhold", "fitToContent": "Tilpas til indhold",
"fit_to_all": "Passer til alt indhold", "fit_to_all": "Passer til alt indhold",
"fit_to_canvas": "Tilpas til lærred", "fit_to_canvas": "Tilpas til lærred",
"fit_to_layer_content": "Tilpas til lag indhold", "fit_to_layer_content": "Tilpas til lag indhold",
"fit_to_sel": "Tilpas til udvælgelse", "fit_to_sel": "Tilpas til udvælgelse",
"align_relative_to": "Juster i forhold til ...", "align_relative_to": "Juster i forhold til ...",
"relativeTo": "i forhold til:", "relativeTo": "i forhold til:",
"page": "side", "page": "side",
"largest_object": "største objekt", "largest_object": "største objekt",
"selected_objects": "valgte objekter", "selected_objects": "valgte objekter",
"smallest_object": "mindste objekt", "smallest_object": "mindste objekt",
"new_doc": "Nyt billede", "new_doc": "Nyt billede",
"open_doc": "Open SVG", "open_doc": "Open SVG",
"export_img": "Export", "export_img": "Export",
"save_doc": "Gem billede", "save_doc": "Gem billede",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Juster Bottom", "align_bottom": "Juster Bottom",
"align_center": "Centrer", "align_center": "Centrer",
"align_left": "Venstrejusteret", "align_left": "Venstrejusteret",
"align_middle": "Juster Mellemøsten", "align_middle": "Juster Mellemøsten",
"align_right": "Højrejusteret", "align_right": "Højrejusteret",
"align_top": "Juster Top", "align_top": "Juster Top",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rektangel", "mode_fhrect": "Free-Hand Rektangel",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Cirkel", "mode_circle": "Cirkel",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Tekstværktøj", "mode_text": "Tekstværktøj",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Fortryd", "undo": "Fortryd",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Gruppe Elements", "group_elements": "Gruppe Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Opdel Elements", "ungroup": "Opdel Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Flyt til bund", "move_bottom": "Flyt til bund",
"move_top": "Flyt til toppen", "move_top": "Flyt til toppen",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Gemme", "source_save": "Gemme",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Slet Layer", "del": "Slet Layer",
"move_down": "Flyt lag ned", "move_down": "Flyt lag ned",
"new": "New Layer", "new": "New Layer",
"rename": "Omdøb Layer", "rename": "Omdøb Layer",
"move_up": "Flyt Layer Up", "move_up": "Flyt Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Vælg foruddefinerede:", "select_predefined": "Vælg foruddefinerede:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "de", lang: "de",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "Abbrechen", "cancel": "Abbrechen",
"key_backspace": "Rücktaste", "key_backspace": "Rücktaste",
"key_del": "Löschen", "key_del": "Löschen",
"key_down": "nach unten", "key_down": "nach unten",
"key_up": "nach oben", "key_up": "nach oben",
"more_opts": "Mehr Optionen", "more_opts": "Mehr Optionen",
"url": "URL", "url": "URL",
"width": "Breite", "width": "Breite",
"height": "Höhe" "height": "Höhe"
}, },
misc: { misc: {
"powered_by": "powered by" "powered_by": "powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Zeige/Verberge weitere Linien-Werkzeuge", "toggle_stroke_tools": "Zeige/Verberge weitere Linien-Werkzeuge",
"palette_info": "Klick zum Ändern der Füllfarbe, Shift-Klick zum Ändern der Linienfarbe", "palette_info": "Klick zum Ändern der Füllfarbe, Shift-Klick zum Ändern der Linienfarbe",
"zoom_level": "vergrößern", "zoom_level": "vergrößern",
"panel_drag": "Nach links/rechts ziehen, um die Größe vom Seitenpanel zu ändern" "panel_drag": "Nach links/rechts ziehen, um die Größe vom Seitenpanel zu ändern"
}, },
properties: { properties: {
"id": "Element identifizieren", "id": "Element identifizieren",
"fill_color": "Füllfarbe ändern", "fill_color": "Füllfarbe ändern",
"stroke_color": "Linienfarbe ändern", "stroke_color": "Linienfarbe ändern",
"stroke_style": "Linienstil ändern", "stroke_style": "Linienstil ändern",
"stroke_width": "Linienbreite ändern", "stroke_width": "Linienbreite ändern",
"pos_x": "Ändere die X-Koordinate", "pos_x": "Ändere die X-Koordinate",
"pos_y": "Ändere die Y-Koordinate", "pos_y": "Ändere die Y-Koordinate",
"linecap_butt": "Form der Linienendung: Stumpf", "linecap_butt": "Form der Linienendung: Stumpf",
"linecap_round": "Form der Linienendung: Rund", "linecap_round": "Form der Linienendung: Rund",
"linecap_square": "Form der Linienendung: Rechteckig", "linecap_square": "Form der Linienendung: Rechteckig",
"linejoin_bevel": "Zusammentreffen von zwei Linien: abgeschrägte Kante", "linejoin_bevel": "Zusammentreffen von zwei Linien: abgeschrägte Kante",
"linejoin_miter": "Zusammentreffen von zwei Linien: Gehrung", "linejoin_miter": "Zusammentreffen von zwei Linien: Gehrung",
"linejoin_round": "Zusammentreffen von zwei Linien: Rund", "linejoin_round": "Zusammentreffen von zwei Linien: Rund",
"angle": "Drehwinkel ändern", "angle": "Drehwinkel ändern",
"blur": "Ändere Wert des Gaußschen Weichzeichners", "blur": "Ändere Wert des Gaußschen Weichzeichners",
"opacity": "Opazität des ausgewählten Objekts ändern", "opacity": "Opazität des ausgewählten Objekts ändern",
"circle_cx": "Kreiszentrum (cx) ändern", "circle_cx": "Kreiszentrum (cx) ändern",
"circle_cy": "Kreiszentrum (cy) ändern", "circle_cy": "Kreiszentrum (cy) ändern",
"circle_r": "Kreisradius (r) ändern", "circle_r": "Kreisradius (r) ändern",
"ellipse_cx": "Ellipsenzentrum (cx) ändern", "ellipse_cx": "Ellipsenzentrum (cx) ändern",
"ellipse_cy": "Ellipsenzentrum (cy) ändern", "ellipse_cy": "Ellipsenzentrum (cy) ändern",
"ellipse_rx": "Ellipsenradius (x) ändern", "ellipse_rx": "Ellipsenradius (x) ändern",
"ellipse_ry": "Ellipsenradius (y) ändern", "ellipse_ry": "Ellipsenradius (y) ändern",
"line_x1": "X-Koordinate des Linienanfangs ändern", "line_x1": "X-Koordinate des Linienanfangs ändern",
"line_x2": "X-Koordinate des Linienendes ändern", "line_x2": "X-Koordinate des Linienendes ändern",
"line_y1": "Y-Koordinate des Linienanfangs ändern", "line_y1": "Y-Koordinate des Linienanfangs ändern",
"line_y2": "Y-Koordinate des Linienendes ändern", "line_y2": "Y-Koordinate des Linienendes ändern",
"rect_height": "Höhe des Rechtecks ändern", "rect_height": "Höhe des Rechtecks ändern",
"rect_width": "Breite des Rechtecks ändern", "rect_width": "Breite des Rechtecks ändern",
"corner_radius": "Eckenradius des Rechtecks ändern", "corner_radius": "Eckenradius des Rechtecks ändern",
"image_width": "Bildbreite ändern", "image_width": "Bildbreite ändern",
"image_height": "Bildhöhe ändern", "image_height": "Bildhöhe ändern",
"image_url": "URL ändern", "image_url": "URL ändern",
"node_x": "Ändere die X-Koordinate des Knoten", "node_x": "Ändere die X-Koordinate des Knoten",
"node_y": "Ändere die Y-Koordinate des Knoten", "node_y": "Ändere die Y-Koordinate des Knoten",
"seg_type": "Ändere den Typ des Segments", "seg_type": "Ändere den Typ des Segments",
"straight_segments": "Gerade", "straight_segments": "Gerade",
"curve_segments": "Kurve", "curve_segments": "Kurve",
"text_contents": "Textinhalt erstellen und bearbeiten", "text_contents": "Textinhalt erstellen und bearbeiten",
"font_family": "Schriftart wählen", "font_family": "Schriftart wählen",
"font_size": "Schriftgröße einstellen", "font_size": "Schriftgröße einstellen",
"bold": "Fetter Text", "bold": "Fetter Text",
"italic": "Kursiver Text" "italic": "Kursiver Text"
}, },
tools: { tools: {
"main_menu": "Hauptmenü", "main_menu": "Hauptmenü",
"bkgnd_color_opac": "Hintergrundfarbe ändern / Opazität", "bkgnd_color_opac": "Hintergrundfarbe ändern / Opazität",
"connector_no_arrow": "Kein Pfeil", "connector_no_arrow": "Kein Pfeil",
"fitToContent": "An den Inhalt anpassen", "fitToContent": "An den Inhalt anpassen",
"fit_to_all": "An gesamten Inhalt anpassen", "fit_to_all": "An gesamten Inhalt anpassen",
"fit_to_canvas": "An die Zeichenfläche anpassen", "fit_to_canvas": "An die Zeichenfläche anpassen",
"fit_to_layer_content": "An Inhalt der Ebene anpassen", "fit_to_layer_content": "An Inhalt der Ebene anpassen",
"fit_to_sel": "An die Auswahl anpassen", "fit_to_sel": "An die Auswahl anpassen",
"align_relative_to": "Relativ zu einem anderem Objekt ausrichten …", "align_relative_to": "Relativ zu einem anderem Objekt ausrichten …",
"relativeTo": "im Vergleich zu:", "relativeTo": "im Vergleich zu:",
"page": "Seite", "page": "Seite",
"largest_object": "größtes Objekt", "largest_object": "größtes Objekt",
"selected_objects": "gewählte Objekte", "selected_objects": "gewählte Objekte",
"smallest_object": "kleinstes Objekt", "smallest_object": "kleinstes Objekt",
"new_doc": "Neues Bild", "new_doc": "Neues Bild",
"open_doc": "Bild öffnen", "open_doc": "Bild öffnen",
"export_img": "Export", "export_img": "Export",
"save_doc": "Bild speichern", "save_doc": "Bild speichern",
"import_doc": "Importiere SVG", "import_doc": "Importiere SVG",
"align_to_page": "Element an Seite ausrichten", "align_to_page": "Element an Seite ausrichten",
"align_bottom": "Unten ausrichten", "align_bottom": "Unten ausrichten",
"align_center": "Zentriert ausrichten", "align_center": "Zentriert ausrichten",
"align_left": "Linksbündig ausrichten", "align_left": "Linksbündig ausrichten",
"align_middle": "In der Mitte ausrichten", "align_middle": "In der Mitte ausrichten",
"align_right": "Rechtsbündig ausrichten", "align_right": "Rechtsbündig ausrichten",
"align_top": "Oben ausrichten", "align_top": "Oben ausrichten",
"mode_select": "Objekte auswählen und verändern", "mode_select": "Objekte auswählen und verändern",
"mode_fhpath": "Freihandlinien zeichnen", "mode_fhpath": "Freihandlinien zeichnen",
"mode_line": "Linien zeichnen", "mode_line": "Linien zeichnen",
"mode_connect": "Verbinde zwei Objekte", "mode_connect": "Verbinde zwei Objekte",
"mode_rect": "Rechteck-Werkzeug", "mode_rect": "Rechteck-Werkzeug",
"mode_square": "Quadrat-Werkzeug", "mode_square": "Quadrat-Werkzeug",
"mode_fhrect": "Freihand-Rechteck", "mode_fhrect": "Freihand-Rechteck",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Kreis", "mode_circle": "Kreis",
"mode_fhellipse": "Freihand-Ellipse", "mode_fhellipse": "Freihand-Ellipse",
"mode_path": "Pfad zeichnen", "mode_path": "Pfad zeichnen",
"mode_shapelib": "Form-Bibliothek", "mode_shapelib": "Form-Bibliothek",
"mode_text": "Text erstellen und bearbeiten", "mode_text": "Text erstellen und bearbeiten",
"mode_image": "Bild einfügen", "mode_image": "Bild einfügen",
"mode_zoom": "Zoomfaktor vergrößern oder verringern", "mode_zoom": "Zoomfaktor vergrößern oder verringern",
"mode_eyedropper": "Eye Dropper Werkzeug", "mode_eyedropper": "Eye Dropper Werkzeug",
"no_embed": "Hinweis: Dieses Bild kann nicht eingebettet werden. Eine Anzeige hängt von diesem Pfad ab.", "no_embed": "Hinweis: Dieses Bild kann nicht eingebettet werden. Eine Anzeige hängt von diesem Pfad ab.",
"undo": "Rückgängig", "undo": "Rückgängig",
"redo": "Wiederherstellen", "redo": "Wiederherstellen",
"tool_source": "Quellcode bearbeiten", "tool_source": "Quellcode bearbeiten",
"wireframe_mode": "Drahtmodell-Modus", "wireframe_mode": "Drahtmodell-Modus",
"toggle_grid": "Zeige/Verstecke Gitternetz", "toggle_grid": "Zeige/Verstecke Gitternetz",
"clone": "Element(e) klonen", "clone": "Element(e) klonen",
"del": "Element(e) löschen", "del": "Element(e) löschen",
"group_elements": "Element(e) gruppieren", "group_elements": "Element(e) gruppieren",
"make_link": "Link erstellen", "make_link": "Link erstellen",
"set_link_url": "Link setzen (leer lassen zum Entfernen)", "set_link_url": "Link setzen (leer lassen zum Entfernen)",
"to_path": "Gewähltes Objekt in einen Pfad konvertieren", "to_path": "Gewähltes Objekt in einen Pfad konvertieren",
"reorient_path": "Neuausrichtung des Pfades", "reorient_path": "Neuausrichtung des Pfades",
"ungroup": "Gruppierung aufheben", "ungroup": "Gruppierung aufheben",
"docprops": "Dokument-Eigenschaften", "docprops": "Dokument-Eigenschaften",
"imagelib": "Bilder-Bibliothek", "imagelib": "Bilder-Bibliothek",
"move_bottom": "Die gewählten Objekte nach ganz unten verschieben", "move_bottom": "Die gewählten Objekte nach ganz unten verschieben",
"move_top": "Die gewählten Objekte nach ganz oben verschieben", "move_top": "Die gewählten Objekte nach ganz oben verschieben",
"node_clone": "Klone den Knoten", "node_clone": "Klone den Knoten",
"node_delete": "Lösche den Knoten", "node_delete": "Lösche den Knoten",
"node_link": "Gekoppelte oder separate Kontrollpunkte für die Bearbeitung des Pfades", "node_link": "Gekoppelte oder separate Kontrollpunkte für die Bearbeitung des Pfades",
"add_subpath": "Teilpfad hinzufügen", "add_subpath": "Teilpfad hinzufügen",
"openclose_path": "Öffne/Verbinde Unterpfad", "openclose_path": "Öffne/Verbinde Unterpfad",
"source_save": "Änderungen akzeptieren", "source_save": "Änderungen akzeptieren",
"cut": "Ausschneiden", "cut": "Ausschneiden",
"copy": "Kopieren", "copy": "Kopieren",
"paste": "Einfügen", "paste": "Einfügen",
"paste_in_place": "Bei Originalposition einfügen", "paste_in_place": "Bei Originalposition einfügen",
"delete": "Löschen", "delete": "Löschen",
"group": "Gruppieren", "group": "Gruppieren",
"move_front": "Nach ganz oben verschieben", "move_front": "Nach ganz oben verschieben",
"move_up": "Hochschieben", "move_up": "Hochschieben",
"move_down": "Herunterschieben", "move_down": "Herunterschieben",
"move_back": "Nach ganz unten verschieben" "move_back": "Nach ganz unten verschieben"
}, },
layers: { layers: {
"layer": "Ebene", "layer": "Ebene",
"layers": "Ebenen", "layers": "Ebenen",
"del": "Ebene löschen", "del": "Ebene löschen",
"move_down": "Ebene nach unten verschieben", "move_down": "Ebene nach unten verschieben",
"new": "Neue Ebene", "new": "Neue Ebene",
"rename": "Ebene umbenennen", "rename": "Ebene umbenennen",
"move_up": "Ebene nach oben verschieben", "move_up": "Ebene nach oben verschieben",
"dupe": "Ebene duplizieren", "dupe": "Ebene duplizieren",
"merge_down": "Nach unten zusammenführen", "merge_down": "Nach unten zusammenführen",
"merge_all": "Alle zusammenführen", "merge_all": "Alle zusammenführen",
"move_elems_to": "Verschiebe ausgewählte Objekte:", "move_elems_to": "Verschiebe ausgewählte Objekte:",
"move_selected": "Verschiebe ausgewählte Objekte auf eine andere Ebene" "move_selected": "Verschiebe ausgewählte Objekte auf eine andere Ebene"
}, },
config: { config: {
"image_props": "Bildeigenschaften", "image_props": "Bildeigenschaften",
"doc_title": "Titel", "doc_title": "Titel",
"doc_dims": "Dimension der Zeichenfläche", "doc_dims": "Dimension der Zeichenfläche",
"included_images": "Eingefügte Bilder", "included_images": "Eingefügte Bilder",
"image_opt_embed": "Daten einbetten (lokale Dateien)", "image_opt_embed": "Daten einbetten (lokale Dateien)",
"image_opt_ref": "Benutze die Dateireferenz", "image_opt_ref": "Benutze die Dateireferenz",
"editor_prefs": "Editor-Einstellungen", "editor_prefs": "Editor-Einstellungen",
"icon_size": "Symbol-Abmessungen", "icon_size": "Symbol-Abmessungen",
"language": "Sprache", "language": "Sprache",
"background": "Editor-Hintergrund", "background": "Editor-Hintergrund",
"editor_img_url": "Bild-URL", "editor_img_url": "Bild-URL",
"editor_bg_note": "Anmerkung: Der Hintergrund wird mit dem Bild nicht gespeichert.", "editor_bg_note": "Anmerkung: Der Hintergrund wird mit dem Bild nicht gespeichert.",
"icon_large": "Groß", "icon_large": "Groß",
"icon_medium": "Mittel", "icon_medium": "Mittel",
"icon_small": "Klein", "icon_small": "Klein",
"icon_xlarge": "Sehr Groß", "icon_xlarge": "Sehr Groß",
"select_predefined": "Auswahl einer vordefinierten:", "select_predefined": "Auswahl einer vordefinierten:",
"units_and_rulers": "Einheiten und Lineale", "units_and_rulers": "Einheiten und Lineale",
"show_rulers": "Zeige Lineale", "show_rulers": "Zeige Lineale",
"base_unit": "Basiseinheit:", "base_unit": "Basiseinheit:",
"grid": "Gitternetz", "grid": "Gitternetz",
"snapping_onoff": "Einrasten an/aus", "snapping_onoff": "Einrasten an/aus",
"snapping_stepsize": "Einrastabstand:", "snapping_stepsize": "Einrastabstand:",
"grid_color": "Gitterfarbe" "grid_color": "Gitterfarbe"
}, },
shape_cats: { shape_cats: {
"basic": "Standard", "basic": "Standard",
"object": "Objekte", "object": "Objekte",
"symbol": "Symbole", "symbol": "Symbole",
"arrow": "Pfeile", "arrow": "Pfeile",
"flowchart": "Flussdiagramme", "flowchart": "Flussdiagramme",
"animal": "Tiere", "animal": "Tiere",
"game": "Spielkarten und Schach", "game": "Spielkarten und Schach",
"dialog_balloon": "Sprechblasen", "dialog_balloon": "Sprechblasen",
"electronics": "Elektronik", "electronics": "Elektronik",
"math": "Mathematik", "math": "Mathematik",
"music": "Musik", "music": "Musik",
"misc": "Sonstige", "misc": "Sonstige",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Wähle eine Bild-Bibliothek aus", "select_lib": "Wähle eine Bild-Bibliothek aus",
"show_list": "Zeige Bibliotheksliste", "show_list": "Zeige Bibliotheksliste",
"import_single": "Einzelnes importieren", "import_single": "Einzelnes importieren",
"import_multi": "Mehrere importieren", "import_multi": "Mehrere importieren",
"open": "Als neues Dokument öffnen" "open": "Als neues Dokument öffnen"
}, },
notification: { notification: {
"invalidAttrValGiven": "Fehlerhafter Wert", "invalidAttrValGiven": "Fehlerhafter Wert",
"noContentToFitTo": "Kein Inhalt anzupassen", "noContentToFitTo": "Kein Inhalt anzupassen",
"dupeLayerName": "Eine Ebene hat bereits diesen Namen", "dupeLayerName": "Eine Ebene hat bereits diesen Namen",
"enterUniqueLayerName": "Verwenden Sie einen eindeutigen Namen für die Ebene", "enterUniqueLayerName": "Verwenden Sie einen eindeutigen Namen für die Ebene",
"enterNewLayerName": "Geben Sie bitte einen neuen Namen für die Ebene ein", "enterNewLayerName": "Geben Sie bitte einen neuen Namen für die Ebene ein",
"layerHasThatName": "Eine Ebene hat bereits diesen Namen", "layerHasThatName": "Eine Ebene hat bereits diesen Namen",
"QmoveElemsToLayer": "Verschiebe ausgewählte Objekte in die Ebene '%s'?", "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!", "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!", "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?", "QerrorsRevertToSource": "Es gibt Parser-Fehler in der SVG-Quelle.\nDie Original-SVG wiederherstellen?",
"QignoreSourceChanges": "Sollen die Änderungen an der SVG-Quelle ignoriert werden?", "QignoreSourceChanges": "Sollen die Änderungen an der SVG-Quelle ignoriert werden?",
"featNotSupported": "Diese Eigenschaft wird nicht unterstützt", "featNotSupported": "Diese Eigenschaft wird nicht unterstützt",
"enterNewImgURL": "Geben Sie die URL für das neue Bild an", "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.", "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.", "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: ", "noteTheseIssues": "Beachten Sie außerdem die folgenden Probleme: ",
"unsavedChanges": "Es sind nicht-gespeicherte Änderungen vorhanden.", "unsavedChanges": "Es sind nicht-gespeicherte Änderungen vorhanden.",
"enterNewLinkURL": "Geben Sie die neue URL ein", "enterNewLinkURL": "Geben Sie die neue URL ein",
"errorLoadingSVG": "Fehler: Kann SVG-Daten nicht laden", "errorLoadingSVG": "Fehler: Kann SVG-Daten nicht laden",
"URLloadFail": "Kann von dieser URL nicht laden", "URLloadFail": "Kann von dieser URL nicht laden",
"retrieving": "Empfange \"%s\"..." "retrieving": "Empfange \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "Standardmäßig kann SVG-Edit Ihre Editor-Einstellungen " + message: "Standardmäßig kann SVG-Edit Ihre Editor-Einstellungen " +
"und die SVG-Inhalte lokal auf Ihrem Gerät abspeichern. So brauchen Sie " + "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 " + "nicht jedes Mal die SVG neu laden. Falls Sie aus Datenschutzgründen " +
"dies nicht wollen, " + "dies nicht wollen, " +
"können Sie die Standardeinstellung im Folgenden ändern.", "können Sie die Standardeinstellung im Folgenden ändern.",
storagePrefsAndContent: "Editor-Einstellungen und SVG-Inhalt lokal speichern", storagePrefsAndContent: "Editor-Einstellungen und SVG-Inhalt lokal speichern",
storagePrefsOnly: "Nur Editor-Einstellungen lokal speichern", storagePrefsOnly: "Nur Editor-Einstellungen lokal speichern",
storagePrefs: "Editor-Einstellungen lokal speichern", storagePrefs: "Editor-Einstellungen lokal speichern",
storageNoPrefsOrContent: "Meine Editor-Einstellungen und die SVG-Inhalte nicht lokal speichern", storageNoPrefsOrContent: "Meine Editor-Einstellungen und die SVG-Inhalte nicht lokal speichern",
storageNoPrefs: "Meine Editor-Einstellungen nicht lokal speichern", storageNoPrefs: "Meine Editor-Einstellungen nicht lokal speichern",
rememberLabel: "Auswahl merken?", rememberLabel: "Auswahl merken?",
rememberTooltip: "Wenn Sie die Einstellungen nicht speichern, wird sich die URL ändern, damit sie nicht noch einmal gefragt werden." rememberTooltip: "Wenn Sie die Einstellungen nicht speichern, wird sich die URL ändern, damit sie nicht noch einmal gefragt werden."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "el", lang: "el",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Αποθηκεύω", "ok": "Αποθηκεύω",
"cancel": "Άκυρο", "cancel": "Άκυρο",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Κάντε κλικ για να συμπληρώσετε την αλλαγή χρώματος, στροφή κλικ για να αλλάξετε το χρώμα εγκεφαλικό", "palette_info": "Κάντε κλικ για να συμπληρώσετε την αλλαγή χρώματος, στροφή κλικ για να αλλάξετε το χρώμα εγκεφαλικό",
"zoom_level": "Αλλαγή επίπεδο μεγέθυνσης", "zoom_level": "Αλλαγή επίπεδο μεγέθυνσης",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Αλλαγή συμπληρώστε χρώμα", "fill_color": "Αλλαγή συμπληρώστε χρώμα",
"stroke_color": "Αλλαγή χρώματος εγκεφαλικό", "stroke_color": "Αλλαγή χρώματος εγκεφαλικό",
"stroke_style": "Αλλαγή στυλ παύλα εγκεφαλικό", "stroke_style": "Αλλαγή στυλ παύλα εγκεφαλικό",
"stroke_width": "Αλλαγή πλάτος γραμμής", "stroke_width": "Αλλαγή πλάτος γραμμής",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Αλλαγή γωνία περιστροφής", "angle": "Αλλαγή γωνία περιστροφής",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Αλλαγή αδιαφάνεια επιλεγμένο σημείο", "opacity": "Αλλαγή αδιαφάνεια επιλεγμένο σημείο",
"circle_cx": "Cx Αλλαγή κύκλου συντονίζουν", "circle_cx": "Cx Αλλαγή κύκλου συντονίζουν",
"circle_cy": "Αλλαγή κύκλου cy συντονίζουν", "circle_cy": "Αλλαγή κύκλου cy συντονίζουν",
"circle_r": "Αλλαγή ακτίνα κύκλου", "circle_r": "Αλλαγή ακτίνα κύκλου",
"ellipse_cx": "Αλλαγή ellipse του CX συντονίζουν", "ellipse_cx": "Αλλαγή ellipse του CX συντονίζουν",
"ellipse_cy": "Αλλαγή ellipse του cy συντονίζουν", "ellipse_cy": "Αλλαγή ellipse του cy συντονίζουν",
"ellipse_rx": "X ακτίνα Αλλαγή ellipse του", "ellipse_rx": "X ακτίνα Αλλαγή ellipse του",
"ellipse_ry": "Y ακτίνα Αλλαγή ellipse του", "ellipse_ry": "Y ακτίνα Αλλαγή ellipse του",
"line_x1": "Αλλαγή γραμμής εκκίνησης x συντονίζουν", "line_x1": "Αλλαγή γραμμής εκκίνησης x συντονίζουν",
"line_x2": "Αλλαγή γραμμής λήγει x συντονίζουν", "line_x2": "Αλλαγή γραμμής λήγει x συντονίζουν",
"line_y1": "Αλλαγή γραμμής εκκίνησης y συντονίζουν", "line_y1": "Αλλαγή γραμμής εκκίνησης y συντονίζουν",
"line_y2": "Αλλαγή γραμμής λήγει y συντονίζουν", "line_y2": "Αλλαγή γραμμής λήγει y συντονίζουν",
"rect_height": "Αλλαγή ύψος ορθογωνίου", "rect_height": "Αλλαγή ύψος ορθογωνίου",
"rect_width": "Αλλαγή πλάτους ορθογώνιο", "rect_width": "Αλλαγή πλάτους ορθογώνιο",
"corner_radius": "Αλλαγή ορθογώνιο Corner Radius", "corner_radius": "Αλλαγή ορθογώνιο Corner Radius",
"image_width": "Αλλαγή πλάτος εικόνας", "image_width": "Αλλαγή πλάτος εικόνας",
"image_height": "Αλλαγή ύψος εικόνας", "image_height": "Αλλαγή ύψος εικόνας",
"image_url": "Αλλαγή URL", "image_url": "Αλλαγή URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Αλλαγή περιεχόμενο κειμένου", "text_contents": "Αλλαγή περιεχόμενο κειμένου",
"font_family": "Αλλαγή γραμματοσειράς Οικογένεια", "font_family": "Αλλαγή γραμματοσειράς Οικογένεια",
"font_size": "Αλλαγή μεγέθους γραμματοσειράς", "font_size": "Αλλαγή μεγέθους γραμματοσειράς",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Πλάγιους" "italic": "Πλάγιους"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Αλλαγή χρώματος φόντου / αδιαφάνεια", "bkgnd_color_opac": "Αλλαγή χρώματος φόντου / αδιαφάνεια",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Ταιριάζει σε όλο το περιεχόμενο", "fit_to_all": "Ταιριάζει σε όλο το περιεχόμενο",
"fit_to_canvas": "Προσαρμογή στο μουσαμά", "fit_to_canvas": "Προσαρμογή στο μουσαμά",
"fit_to_layer_content": "Προσαρμογή στο περιεχόμενο στρώμα", "fit_to_layer_content": "Προσαρμογή στο περιεχόμενο στρώμα",
"fit_to_sel": "Fit to επιλογή", "fit_to_sel": "Fit to επιλογή",
"align_relative_to": "Στοίχιση σε σχέση με ...", "align_relative_to": "Στοίχιση σε σχέση με ...",
"relativeTo": "σε σχέση με:", "relativeTo": "σε σχέση με:",
"page": "σελίδα", "page": "σελίδα",
"largest_object": "μεγαλύτερο αντικείμενο", "largest_object": "μεγαλύτερο αντικείμενο",
"selected_objects": "εκλέγεται αντικείμενα", "selected_objects": "εκλέγεται αντικείμενα",
"smallest_object": "μικρότερο αντικείμενο", "smallest_object": "μικρότερο αντικείμενο",
"new_doc": "Νέα εικόνα", "new_doc": "Νέα εικόνα",
"open_doc": "Άνοιγμα εικόνας", "open_doc": "Άνοιγμα εικόνας",
"export_img": "Export", "export_img": "Export",
"save_doc": "Αποθήκευση εικόνας", "save_doc": "Αποθήκευση εικόνας",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Στοίχισηκάτω", "align_bottom": "Στοίχισηκάτω",
"align_center": "Στοίχισηστοκέντρο", "align_center": "Στοίχισηστοκέντρο",
"align_left": "Στοίχισηαριστερά", "align_left": "Στοίχισηαριστερά",
"align_middle": "Ευθυγράμμιση Μέση", "align_middle": "Ευθυγράμμιση Μέση",
"align_right": "Στοίχισηδεξιά", "align_right": "Στοίχισηδεξιά",
"align_top": "Στοίχισηπάνω", "align_top": "Στοίχισηπάνω",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Εργαλείομολυβιού", "mode_fhpath": "Εργαλείομολυβιού",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Δωρεάν-Hand ορθογώνιο", "mode_fhrect": "Δωρεάν-Hand ορθογώνιο",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Κύκλος", "mode_circle": "Κύκλος",
"mode_fhellipse": "Δωρεάν-Hand Ellipse", "mode_fhellipse": "Δωρεάν-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Κείμενο Tool", "mode_text": "Κείμενο Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Αναίρεση", "undo": "Αναίρεση",
"redo": "Redo", "redo": "Redo",
"tool_source": "Επεξεργασία Πηγή", "tool_source": "Επεξεργασία Πηγή",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Ομάδα Στοιχεία", "group_elements": "Ομάδα Στοιχεία",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Κατάργηση ομαδοποίησης Στοιχεία", "ungroup": "Κατάργηση ομαδοποίησης Στοιχεία",
"docprops": "Ιδιότητες εγγράφου", "docprops": "Ιδιότητες εγγράφου",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Μετακίνηση προς τα κάτω", "move_bottom": "Μετακίνηση προς τα κάτω",
"move_top": "Μετακίνηση στην αρχή", "move_top": "Μετακίνηση στην αρχή",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Αποθηκεύω", "source_save": "Αποθηκεύω",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Διαγραφήστρώματος", "del": "Διαγραφήστρώματος",
"move_down": "Μετακίνηση Layer Down", "move_down": "Μετακίνηση Layer Down",
"new": "Νέο Layer", "new": "Νέο Layer",
"rename": "Μετονομασία Layer", "rename": "Μετονομασία Layer",
"move_up": "Μετακίνηση Layer Up", "move_up": "Μετακίνηση Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Επιλογή προκαθορισμένων:", "select_predefined": "Επιλογή προκαθορισμένων:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "en", lang: "en",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "Cancel", "cancel": "Cancel",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Click to change fill color, shift-click to change stroke color", "palette_info": "Click to change fill color, shift-click to change stroke color",
"zoom_level": "Change zoom level", "zoom_level": "Change zoom level",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Change fill color", "fill_color": "Change fill color",
"stroke_color": "Change stroke color", "stroke_color": "Change stroke color",
"stroke_style": "Change stroke dash style", "stroke_style": "Change stroke dash style",
"stroke_width": "Change stroke width by 1, shift-click to change by 0.1", "stroke_width": "Change stroke width by 1, shift-click to change by 0.1",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Change rotation angle", "angle": "Change rotation angle",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Change selected item opacity", "opacity": "Change selected item opacity",
"circle_cx": "Change circle's cx coordinate", "circle_cx": "Change circle's cx coordinate",
"circle_cy": "Change circle's cy coordinate", "circle_cy": "Change circle's cy coordinate",
"circle_r": "Change circle's radius", "circle_r": "Change circle's radius",
"ellipse_cx": "Change ellipse's cx coordinate", "ellipse_cx": "Change ellipse's cx coordinate",
"ellipse_cy": "Change ellipse's cy coordinate", "ellipse_cy": "Change ellipse's cy coordinate",
"ellipse_rx": "Change ellipse's x radius", "ellipse_rx": "Change ellipse's x radius",
"ellipse_ry": "Change ellipse's y radius", "ellipse_ry": "Change ellipse's y radius",
"line_x1": "Change line's starting x coordinate", "line_x1": "Change line's starting x coordinate",
"line_x2": "Change line's ending x coordinate", "line_x2": "Change line's ending x coordinate",
"line_y1": "Change line's starting y coordinate", "line_y1": "Change line's starting y coordinate",
"line_y2": "Change line's ending y coordinate", "line_y2": "Change line's ending y coordinate",
"rect_height": "Change rectangle height", "rect_height": "Change rectangle height",
"rect_width": "Change rectangle width", "rect_width": "Change rectangle width",
"corner_radius": "Change Rectangle Corner Radius", "corner_radius": "Change Rectangle Corner Radius",
"image_width": "Change image width", "image_width": "Change image width",
"image_height": "Change image height", "image_height": "Change image height",
"image_url": "Change URL", "image_url": "Change URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Change text contents", "text_contents": "Change text contents",
"font_family": "Change Font Family", "font_family": "Change Font Family",
"font_size": "Change Font Size", "font_size": "Change Font Size",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Change background color/opacity", "bkgnd_color_opac": "Change background color/opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Fit to all content", "fit_to_all": "Fit to all content",
"fit_to_canvas": "Fit to canvas", "fit_to_canvas": "Fit to canvas",
"fit_to_layer_content": "Fit to layer content", "fit_to_layer_content": "Fit to layer content",
"fit_to_sel": "Fit to selection", "fit_to_sel": "Fit to selection",
"align_relative_to": "Align relative to ...", "align_relative_to": "Align relative to ...",
"relativeTo": "relative to:", "relativeTo": "relative to:",
"page": "page", "page": "page",
"largest_object": "largest object", "largest_object": "largest object",
"selected_objects": "selected objects", "selected_objects": "selected objects",
"smallest_object": "smallest object", "smallest_object": "smallest object",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Open SVG", "open_doc": "Open SVG",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Align Center", "align_center": "Align Center",
"align_left": "Align Left", "align_left": "Align Left",
"align_middle": "Align Middle", "align_middle": "Align Middle",
"align_right": "Align Right", "align_right": "Align Right",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Undo", "undo": "Undo",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Group Elements", "group_elements": "Group Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Apply Changes", "source_save": "Apply Changes",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"new": "New Layer", "new": "New Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Select predefined:", "select_predefined": "Select predefined:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer \"%s\"?", "QmoveElemsToLayer": "Move selected elements to layer \"%s\"?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "es", lang: "es",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "Cancelar", "cancel": "Cancelar",
"key_backspace": "retroceso", "key_backspace": "retroceso",
"key_del": "suprimir", "key_del": "suprimir",
"key_down": "abajo", "key_down": "abajo",
"key_up": "arriba", "key_up": "arriba",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Mostrar/ocultar herramientas de trazo adicionales", "toggle_stroke_tools": "Mostrar/ocultar herramientas de trazo adicionales",
"palette_info": "Haga clic para cambiar el color de relleno. Pulse Mayús y haga clic para cambiar el color del contorno.", "palette_info": "Haga clic para cambiar el color de relleno. Pulse Mayús y haga clic para cambiar el color del contorno.",
"zoom_level": "Cambiar el nivel de zoom", "zoom_level": "Cambiar el nivel de zoom",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Cambiar el color de relleno", "fill_color": "Cambiar el color de relleno",
"stroke_color": "Cambiar el color del contorno", "stroke_color": "Cambiar el color del contorno",
"stroke_style": "Cambiar el estilo del trazo del contorno", "stroke_style": "Cambiar el estilo del trazo del contorno",
"stroke_width": "Cambiar el grosor del contorno", "stroke_width": "Cambiar el grosor del contorno",
"pos_x": "Cambiar la posición horizontal X", "pos_x": "Cambiar la posición horizontal X",
"pos_y": "Cambiar la posición vertical Y", "pos_y": "Cambiar la posición vertical Y",
"linecap_butt": "Final de la línea: en el nodo", "linecap_butt": "Final de la línea: en el nodo",
"linecap_round": "Final de la línea: redondeada", "linecap_round": "Final de la línea: redondeada",
"linecap_square": "Final de la línea: cuadrada", "linecap_square": "Final de la línea: cuadrada",
"linejoin_bevel": "Unión: biselada", "linejoin_bevel": "Unión: biselada",
"linejoin_miter": "Unión: recta", "linejoin_miter": "Unión: recta",
"linejoin_round": "Unión: redondeada", "linejoin_round": "Unión: redondeada",
"angle": "Cambiar ángulo de rotación", "angle": "Cambiar ángulo de rotación",
"blur": "Ajustar desenfoque gausiano", "blur": "Ajustar desenfoque gausiano",
"opacity": "Cambiar la opacidad del objeto seleccionado", "opacity": "Cambiar la opacidad del objeto seleccionado",
"circle_cx": "Cambiar la posición horizonral CX del círculo", "circle_cx": "Cambiar la posición horizonral CX del círculo",
"circle_cy": "Cambiar la posición vertical CY del círculo", "circle_cy": "Cambiar la posición vertical CY del círculo",
"circle_r": "Cambiar el radio del círculo", "circle_r": "Cambiar el radio del círculo",
"ellipse_cx": "Cambiar la posición horizontal CX de la elipse", "ellipse_cx": "Cambiar la posición horizontal CX de la elipse",
"ellipse_cy": "Cambiar la posición vertical CY de la elipse", "ellipse_cy": "Cambiar la posición vertical CY de la elipse",
"ellipse_rx": "Cambiar el radio horizontal X de la elipse", "ellipse_rx": "Cambiar el radio horizontal X de la elipse",
"ellipse_ry": "Cambiar el radio vertical Y de la elipse", "ellipse_ry": "Cambiar el radio vertical Y de la elipse",
"line_x1": "Cambiar la posición horizontal X del comienzo de la línea", "line_x1": "Cambiar la posición horizontal X del comienzo de la línea",
"line_x2": "Cambiar la posición horizontal X del final de la línea", "line_x2": "Cambiar la posición horizontal X del final de la línea",
"line_y1": "Cambiar la posición vertical Y del comienzo de la línea", "line_y1": "Cambiar la posición vertical Y del comienzo de la línea",
"line_y2": "Cambiar la posición vertical Y del final de la línea", "line_y2": "Cambiar la posición vertical Y del final de la línea",
"rect_height": "Cambiar la altura del rectángulo", "rect_height": "Cambiar la altura del rectángulo",
"rect_width": "Cambiar el ancho rectángulo", "rect_width": "Cambiar el ancho rectángulo",
"corner_radius": "Cambiar el radio de las esquinas del rectángulo", "corner_radius": "Cambiar el radio de las esquinas del rectángulo",
"image_width": "Cambiar el ancho de la imagen", "image_width": "Cambiar el ancho de la imagen",
"image_height": "Cambiar la altura de la imagen", "image_height": "Cambiar la altura de la imagen",
"image_url": "Modificar URL", "image_url": "Modificar URL",
"node_x": "Cambiar la posición horizontal X del nodo", "node_x": "Cambiar la posición horizontal X del nodo",
"node_y": "Cambiar la posición vertical Y del nodo", "node_y": "Cambiar la posición vertical Y del nodo",
"seg_type": "Cambiar el tipo de segmento", "seg_type": "Cambiar el tipo de segmento",
"straight_segments": "Recta", "straight_segments": "Recta",
"curve_segments": "Curva", "curve_segments": "Curva",
"text_contents": "Modificar el texto", "text_contents": "Modificar el texto",
"font_family": "Tipo de fuente", "font_family": "Tipo de fuente",
"font_size": "Tamaño de la fuente", "font_size": "Tamaño de la fuente",
"bold": "Texto en negrita", "bold": "Texto en negrita",
"italic": "Texto en cursiva" "italic": "Texto en cursiva"
}, },
tools: { tools: {
"main_menu": "Menú principal", "main_menu": "Menú principal",
"bkgnd_color_opac": "Cambiar color de fondo / opacidad", "bkgnd_color_opac": "Cambiar color de fondo / opacidad",
"connector_no_arrow": "Sin flecha", "connector_no_arrow": "Sin flecha",
"fitToContent": "Ajustar al contenido", "fitToContent": "Ajustar al contenido",
"fit_to_all": "Ajustar a todo el contenido", "fit_to_all": "Ajustar a todo el contenido",
"fit_to_canvas": "Ajustar al lienzo", "fit_to_canvas": "Ajustar al lienzo",
"fit_to_layer_content": "Ajustar al contenido de la capa", "fit_to_layer_content": "Ajustar al contenido de la capa",
"fit_to_sel": "Ajustar a la selección", "fit_to_sel": "Ajustar a la selección",
"align_relative_to": "Alinear con respecto a ...", "align_relative_to": "Alinear con respecto a ...",
"relativeTo": "en relación con:", "relativeTo": "en relación con:",
"page": "Página", "page": "Página",
"largest_object": "El objeto más grande", "largest_object": "El objeto más grande",
"selected_objects": "Objetos seleccionados", "selected_objects": "Objetos seleccionados",
"smallest_object": "El objeto más pequeño", "smallest_object": "El objeto más pequeño",
"new_doc": "Nueva imagen", "new_doc": "Nueva imagen",
"open_doc": "Abrir imagen", "open_doc": "Abrir imagen",
"export_img": "Export", "export_img": "Export",
"save_doc": "Guardar imagen", "save_doc": "Guardar imagen",
"import_doc": "Importar un archivo SVG", "import_doc": "Importar un archivo SVG",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Alinear parte inferior", "align_bottom": "Alinear parte inferior",
"align_center": "Centrar verticalmente", "align_center": "Centrar verticalmente",
"align_left": "Alinear lado izquierdo", "align_left": "Alinear lado izquierdo",
"align_middle": "Centrar horizontalmente", "align_middle": "Centrar horizontalmente",
"align_right": "Alinear lado derecho", "align_right": "Alinear lado derecho",
"align_top": "Alinear parte superior", "align_top": "Alinear parte superior",
"mode_select": "Herramienta de selección", "mode_select": "Herramienta de selección",
"mode_fhpath": "Herramienta de lápiz", "mode_fhpath": "Herramienta de lápiz",
"mode_line": "Trazado de líneas", "mode_line": "Trazado de líneas",
"mode_connect": "Conectar dos objetos", "mode_connect": "Conectar dos objetos",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Rectángulo a mano alzada", "mode_fhrect": "Rectángulo a mano alzada",
"mode_ellipse": "Elipse", "mode_ellipse": "Elipse",
"mode_circle": "Círculo", "mode_circle": "Círculo",
"mode_fhellipse": "Elipse a mano alzada", "mode_fhellipse": "Elipse a mano alzada",
"mode_path": "Herramienta de trazado", "mode_path": "Herramienta de trazado",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Insertar texto", "mode_text": "Insertar texto",
"mode_image": "Insertar imagen", "mode_image": "Insertar imagen",
"mode_zoom": "Zoom", "mode_zoom": "Zoom",
"mode_eyedropper": "Herramienta de pipeta", "mode_eyedropper": "Herramienta de pipeta",
"no_embed": "NOTA: La imagen no puede ser integrada. El contenido mostrado dependerá de la imagen ubicada en esta ruta. ", "no_embed": "NOTA: La imagen no puede ser integrada. El contenido mostrado dependerá de la imagen ubicada en esta ruta. ",
"undo": "Deshacer", "undo": "Deshacer",
"redo": "Rehacer", "redo": "Rehacer",
"tool_source": "Editar código fuente", "tool_source": "Editar código fuente",
"wireframe_mode": "Modo marco de alambre", "wireframe_mode": "Modo marco de alambre",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Agrupar objetos", "group_elements": "Agrupar objetos",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convertir a trazado", "to_path": "Convertir a trazado",
"reorient_path": "Reorientar el trazado", "reorient_path": "Reorientar el trazado",
"ungroup": "Desagrupar objetos", "ungroup": "Desagrupar objetos",
"docprops": "Propiedades del documento", "docprops": "Propiedades del documento",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Mover abajo", "move_bottom": "Mover abajo",
"move_top": "Mover arriba", "move_top": "Mover arriba",
"node_clone": "Clonar nodo", "node_clone": "Clonar nodo",
"node_delete": "Suprimir nodo", "node_delete": "Suprimir nodo",
"node_link": "Enlazar puntos de control", "node_link": "Enlazar puntos de control",
"add_subpath": "Añadir subtrazado", "add_subpath": "Añadir subtrazado",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Aplicar cambios", "source_save": "Aplicar cambios",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Capa", "layer": "Capa",
"layers": "Layers", "layers": "Layers",
"del": "Suprimir capa", "del": "Suprimir capa",
"move_down": "Mover la capa hacia abajo", "move_down": "Mover la capa hacia abajo",
"new": "Nueva capa", "new": "Nueva capa",
"rename": "Renombrar capa", "rename": "Renombrar capa",
"move_up": "Mover la capa hacia arriba", "move_up": "Mover la capa hacia arriba",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Desplazar objetos a:", "move_elems_to": "Desplazar objetos a:",
"move_selected": "Mover los objetos seleccionados a otra capa" "move_selected": "Mover los objetos seleccionados a otra capa"
}, },
config: { config: {
"image_props": "Propiedades de la Imagen", "image_props": "Propiedades de la Imagen",
"doc_title": "Título", "doc_title": "Título",
"doc_dims": "Tamaño del lienzo", "doc_dims": "Tamaño del lienzo",
"included_images": "Imágenes integradas", "included_images": "Imágenes integradas",
"image_opt_embed": "Integrar imágenes en forma de datos (archivos locales)", "image_opt_embed": "Integrar imágenes en forma de datos (archivos locales)",
"image_opt_ref": "Usar la referencia del archivo", "image_opt_ref": "Usar la referencia del archivo",
"editor_prefs": "Preferencias del Editor", "editor_prefs": "Preferencias del Editor",
"icon_size": "Tamaño de los iconos", "icon_size": "Tamaño de los iconos",
"language": "Idioma", "language": "Idioma",
"background": "Fondo del editor", "background": "Fondo del editor",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Nota: El fondo no se guardará junto con la imagen.", "editor_bg_note": "Nota: El fondo no se guardará junto con la imagen.",
"icon_large": "Grande", "icon_large": "Grande",
"icon_medium": "Mediano", "icon_medium": "Mediano",
"icon_small": "Pequeño", "icon_small": "Pequeño",
"icon_xlarge": "Muy grande", "icon_xlarge": "Muy grande",
"select_predefined": "Seleccionar predefinido:", "select_predefined": "Seleccionar predefinido:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Valor no válido", "invalidAttrValGiven": "Valor no válido",
"noContentToFitTo": "No existe un contenido al que ajustarse.", "noContentToFitTo": "No existe un contenido al que ajustarse.",
"dupeLayerName": "¡Ya existe una capa con este nombre!", "dupeLayerName": "¡Ya existe una capa con este nombre!",
"enterUniqueLayerName": "Introduzca otro nombre distinto para la capa.", "enterUniqueLayerName": "Introduzca otro nombre distinto para la capa.",
"enterNewLayerName": "Introduzca el nuevo nombre de la capa.", "enterNewLayerName": "Introduzca el nuevo nombre de la capa.",
"layerHasThatName": "El nombre introducido es el nombre actual de la capa.", "layerHasThatName": "El nombre introducido es el nombre actual de la capa.",
"QmoveElemsToLayer": "¿Desplazar los elementos seleccionados a la capa '%s'?", "QmoveElemsToLayer": "¿Desplazar los elementos seleccionados a la capa '%s'?",
"QwantToClear": "¿Desea borrar el dibujo?\n¡El historial de acciones también se borrará!", "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!", "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?", "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?", "QignoreSourceChanges": "¿Desea ignorar los cambios realizados sobre el código fuente SVG?",
"featNotSupported": "Función no compatible.", "featNotSupported": "Función no compatible.",
"enterNewImgURL": "Introduzca la nueva URL de la imagen.", "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.", "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.", "saveFromBrowser": "Seleccionar \"Guardar como...\" en su navegador para guardar la imagen en forma de archivo %s.",
"noteTheseIssues": "Existen además los problemas siguientes:", "noteTheseIssues": "Existen además los problemas siguientes:",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "et", lang: "et",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Salvestama", "ok": "Salvestama",
"cancel": "Tühista", "cancel": "Tühista",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Click muuta täitke värvi, Shift-nuppu, et muuta insult värvi", "palette_info": "Click muuta täitke värvi, Shift-nuppu, et muuta insult värvi",
"zoom_level": "Muuda suumi taset", "zoom_level": "Muuda suumi taset",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Muuda täitke värvi", "fill_color": "Muuda täitke värvi",
"stroke_color": "Muuda insult värvi", "stroke_color": "Muuda insult värvi",
"stroke_style": "Muuda insult kriips stiil", "stroke_style": "Muuda insult kriips stiil",
"stroke_width": "Muuda insult laius", "stroke_width": "Muuda insult laius",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Muuda Pöördenurk", "angle": "Muuda Pöördenurk",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Muuda valitud elemendi läbipaistmatus", "opacity": "Muuda valitud elemendi läbipaistmatus",
"circle_cx": "Muuda ringi&#39;s cx kooskõlastada", "circle_cx": "Muuda ringi&#39;s cx kooskõlastada",
"circle_cy": "Muuda ringi&#39;s cy kooskõlastada", "circle_cy": "Muuda ringi&#39;s cy kooskõlastada",
"circle_r": "Muuda ring on raadiusega", "circle_r": "Muuda ring on raadiusega",
"ellipse_cx": "Muuda ellips&#39;s cx kooskõlastada", "ellipse_cx": "Muuda ellips&#39;s cx kooskõlastada",
"ellipse_cy": "Muuda ellips&#39;s cy kooskõlastada", "ellipse_cy": "Muuda ellips&#39;s cy kooskõlastada",
"ellipse_rx": "Muuda ellips&#39;s x raadius", "ellipse_rx": "Muuda ellips&#39;s x raadius",
"ellipse_ry": "Muuda ellips&#39;s y raadius", "ellipse_ry": "Muuda ellips&#39;s y raadius",
"line_x1": "Muuda rööbastee algab x-koordinaadi", "line_x1": "Muuda rööbastee algab x-koordinaadi",
"line_x2": "Muuda Line lõpeb x-koordinaadi", "line_x2": "Muuda Line lõpeb x-koordinaadi",
"line_y1": "Muuda rööbastee algab y-koordinaadi", "line_y1": "Muuda rööbastee algab y-koordinaadi",
"line_y2": "Muuda Line lõppenud y-koordinaadi", "line_y2": "Muuda Line lõppenud y-koordinaadi",
"rect_height": "Muuda ristküliku kõrgus", "rect_height": "Muuda ristküliku kõrgus",
"rect_width": "Muuda ristküliku laius", "rect_width": "Muuda ristküliku laius",
"corner_radius": "Muuda ristkülik Nurgakabe Raadius", "corner_radius": "Muuda ristkülik Nurgakabe Raadius",
"image_width": "Muuda pilt laius", "image_width": "Muuda pilt laius",
"image_height": "Muuda pilt kõrgus", "image_height": "Muuda pilt kõrgus",
"image_url": "Change URL", "image_url": "Change URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Muuda teksti sisu", "text_contents": "Muuda teksti sisu",
"font_family": "Muutke Kirjasinperhe", "font_family": "Muutke Kirjasinperhe",
"font_size": "Change font size", "font_size": "Change font size",
"bold": "Rasvane kiri", "bold": "Rasvane kiri",
"italic": "Kursiiv" "italic": "Kursiiv"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Muuda tausta värvi / läbipaistmatus", "bkgnd_color_opac": "Muuda tausta värvi / läbipaistmatus",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Sobita kogu sisu", "fit_to_all": "Sobita kogu sisu",
"fit_to_canvas": "Sobita lõuend", "fit_to_canvas": "Sobita lõuend",
"fit_to_layer_content": "Sobita kiht sisu", "fit_to_layer_content": "Sobita kiht sisu",
"fit_to_sel": "Fit valiku", "fit_to_sel": "Fit valiku",
"align_relative_to": "Viia võrreldes ...", "align_relative_to": "Viia võrreldes ...",
"relativeTo": "võrreldes:", "relativeTo": "võrreldes:",
"page": "lehekülg", "page": "lehekülg",
"largest_object": "suurim objekt", "largest_object": "suurim objekt",
"selected_objects": "valitud objektide", "selected_objects": "valitud objektide",
"smallest_object": "väikseim objekt", "smallest_object": "väikseim objekt",
"new_doc": "Uus pilt", "new_doc": "Uus pilt",
"open_doc": "Pildi avamine", "open_doc": "Pildi avamine",
"export_img": "Export", "export_img": "Export",
"save_doc": "Salvesta pilt", "save_doc": "Salvesta pilt",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Viia Bottom", "align_bottom": "Viia Bottom",
"align_center": "Keskele joondamine", "align_center": "Keskele joondamine",
"align_left": "Vasakjoondus", "align_left": "Vasakjoondus",
"align_middle": "Viia Lähis -", "align_middle": "Viia Lähis -",
"align_right": "Paremjoondus", "align_right": "Paremjoondus",
"align_top": "Viia Üles", "align_top": "Viia Üles",
"mode_select": "Vali Tool", "mode_select": "Vali Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Online-Hand Ristkülik", "mode_fhrect": "Online-Hand Ristkülik",
"mode_ellipse": "Ellips", "mode_ellipse": "Ellips",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Online-Hand Ellips", "mode_fhellipse": "Online-Hand Ellips",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Tekst Tool", "mode_text": "Tekst Tool",
"mode_image": "Pilt Tool", "mode_image": "Pilt Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Undo", "undo": "Undo",
"redo": "Redo", "redo": "Redo",
"tool_source": "Muuda Allikas", "tool_source": "Muuda Allikas",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Rühma elemendid", "group_elements": "Rühma elemendid",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Lõhu Elements", "ungroup": "Lõhu Elements",
"docprops": "Dokumendi omadused", "docprops": "Dokumendi omadused",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Liiguta alla", "move_bottom": "Liiguta alla",
"move_top": "Liiguta üles", "move_top": "Liiguta üles",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Salvestama", "source_save": "Salvestama",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Kustuta Kiht", "del": "Kustuta Kiht",
"move_down": "Liiguta kiht alla", "move_down": "Liiguta kiht alla",
"new": "Uus kiht", "new": "Uus kiht",
"rename": "Nimeta kiht", "rename": "Nimeta kiht",
"move_up": "Liiguta kiht üles", "move_up": "Liiguta kiht üles",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Valige eelmääratletud:", "select_predefined": "Valige eelmääratletud:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "fa", lang: "fa",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "‫تأیید‬", "ok": "‫تأیید‬",
"cancel": "‫لغو‬", "cancel": "‫لغو‬",
"key_backspace": "‫پس بر ", "key_backspace": "‫پس بر ",
"key_del": "‫حذف ", "key_del": "‫حذف ",
"key_down": "‫پایین ", "key_down": "‫پایین ",
"key_up": "‫بالا ", "key_up": "‫بالا ",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "‫برای تغییر رنگ، کلیک کنید. برای تغییر رنگ لبه، کلید تبدیل (shift) را فشرده و کلیک کنید‬", "palette_info": "‫برای تغییر رنگ، کلیک کنید. برای تغییر رنگ لبه، کلید تبدیل (shift) را فشرده و کلیک کنید‬",
"zoom_level": "‫تغییر بزرگ نمایی‬", "zoom_level": "‫تغییر بزرگ نمایی‬",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "‫تغییر رنگ‬", "fill_color": "‫تغییر رنگ‬",
"stroke_color": "‫تغییر رنگ لبه‬", "stroke_color": "‫تغییر رنگ لبه‬",
"stroke_style": "‫تغییر نقطه چین لبه‬", "stroke_style": "‫تغییر نقطه چین لبه‬",
"stroke_width": "‫تغییر عرض لبه‬", "stroke_width": "‫تغییر عرض لبه‬",
"pos_x": "‫تغییر مختصات X", "pos_x": "‫تغییر مختصات X",
"pos_y": "‫تغییر مختصات Y", "pos_y": "‫تغییر مختصات Y",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "‫تغییر زاویه چرخش‬", "angle": "‫تغییر زاویه چرخش‬",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "‫تغییر تاری عنصر انتخاب شده‬", "opacity": "‫تغییر تاری عنصر انتخاب شده‬",
"circle_cx": "‫تغییر مختصات cx دایره‬", "circle_cx": "‫تغییر مختصات cx دایره‬",
"circle_cy": "‫تغییر مختصات cy دایره‬", "circle_cy": "‫تغییر مختصات cy دایره‬",
"circle_r": "‫تغییر شعاع دایره‬", "circle_r": "‫تغییر شعاع دایره‬",
"ellipse_cx": "‫تغییر مختصات cx بیضی‬", "ellipse_cx": "‫تغییر مختصات cx بیضی‬",
"ellipse_cy": "‫تغییر مختصات cy بیضی‬", "ellipse_cy": "‫تغییر مختصات cy بیضی‬",
"ellipse_rx": "‫تغییر شعاع rx بیضی‬", "ellipse_rx": "‫تغییر شعاع rx بیضی‬",
"ellipse_ry": "‫تغییر شعاع ry بیضی‬", "ellipse_ry": "‫تغییر شعاع ry بیضی‬",
"line_x1": "‫تغییر مختصات x آغاز خط‬", "line_x1": "‫تغییر مختصات x آغاز خط‬",
"line_x2": "‫تغییر مختصات x پایان خط‬", "line_x2": "‫تغییر مختصات x پایان خط‬",
"line_y1": "‫تغییر مختصات y آغاز خط‬", "line_y1": "‫تغییر مختصات y آغاز خط‬",
"line_y2": "‫تغییر مختصات y پایان خط‬", "line_y2": "‫تغییر مختصات y پایان خط‬",
"rect_height": "‫تغییر ارتفاع مستطیل‬", "rect_height": "‫تغییر ارتفاع مستطیل‬",
"rect_width": "‫تغییر عرض مستطیل‬", "rect_width": "‫تغییر عرض مستطیل‬",
"corner_radius": "‫شعاع گوشه:", "corner_radius": "‫شعاع گوشه:",
"image_width": "‫تغییر عرض تصویر‬", "image_width": "‫تغییر عرض تصویر‬",
"image_height": "‫تغییر ارتفاع تصویر‬", "image_height": "‫تغییر ارتفاع تصویر‬",
"image_url": "‫تغییر نشانی وب (url)", "image_url": "‫تغییر نشانی وب (url)",
"node_x": "‫تغییر مختصات x نقطه‬", "node_x": "‫تغییر مختصات x نقطه‬",
"node_y": "‫تغییر مختصات y نقطه‬", "node_y": "‫تغییر مختصات y نقطه‬",
"seg_type": "‫تغییر نوع قطعه (segment)", "seg_type": "‫تغییر نوع قطعه (segment)",
"straight_segments": "‫مستقیم‬", "straight_segments": "‫مستقیم‬",
"curve_segments": "‫منحنی‬", "curve_segments": "‫منحنی‬",
"text_contents": "‫تغییر محتویات متن‬", "text_contents": "‫تغییر محتویات متن‬",
"font_family": "‫تغییر خانواده قلم‬", "font_family": "‫تغییر خانواده قلم‬",
"font_size": "‫تغییر اندازه قلم‬", "font_size": "‫تغییر اندازه قلم‬",
"bold": "‫متن توپر ", "bold": "‫متن توپر ",
"italic": "‫متن کج " "italic": "‫متن کج "
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "‫تغییر رنگ پس زمینه / تاری‬", "bkgnd_color_opac": "‫تغییر رنگ پس زمینه / تاری‬",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "‫هم اندازه شدن با محتوا‬", "fitToContent": "‫هم اندازه شدن با محتوا‬",
"fit_to_all": "‫هم اندازه شدن با همه محتویات‬", "fit_to_all": "‫هم اندازه شدن با همه محتویات‬",
"fit_to_canvas": "‫هم اندازه شدن با صفحه مجازی (بوم)", "fit_to_canvas": "‫هم اندازه شدن با صفحه مجازی (بوم)",
"fit_to_layer_content": "‫هم اندازه شدن با محتوای لایه‬", "fit_to_layer_content": "‫هم اندازه شدن با محتوای لایه‬",
"fit_to_sel": "‫هم اندازه شدن با اشیاء انتخاب شده‬", "fit_to_sel": "‫هم اندازه شدن با اشیاء انتخاب شده‬",
"align_relative_to": "‫تراز نسبت به ...", "align_relative_to": "‫تراز نسبت به ...",
"relativeTo": "‫نسبت به:", "relativeTo": "‫نسبت به:",
"page": "‫صفحه‬", "page": "‫صفحه‬",
"largest_object": "‫بزرگترین شئ‬", "largest_object": "‫بزرگترین شئ‬",
"selected_objects": "‫اشیاء انتخاب شده‬", "selected_objects": "‫اشیاء انتخاب شده‬",
"smallest_object": "‫کوچکترین شئ‬", "smallest_object": "‫کوچکترین شئ‬",
"new_doc": "‫تصویر جدید ", "new_doc": "‫تصویر جدید ",
"open_doc": "‫باز کردن تصویر ", "open_doc": "‫باز کردن تصویر ",
"export_img": "Export", "export_img": "Export",
"save_doc": "‫ذخیره تصویر ", "save_doc": "‫ذخیره تصویر ",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "‫تراز پایین‬", "align_bottom": "‫تراز پایین‬",
"align_center": "‫وسط چین‬", "align_center": "‫وسط چین‬",
"align_left": "‫چپ چین‬", "align_left": "‫چپ چین‬",
"align_middle": "‫تراز میانه‬", "align_middle": "‫تراز میانه‬",
"align_right": "‫راست چین‬", "align_right": "‫راست چین‬",
"align_top": "‫تراز بالا‬", "align_top": "‫تراز بالا‬",
"mode_select": "‫ابزار انتخاب ", "mode_select": "‫ابزار انتخاب ",
"mode_fhpath": "‫ابزار مداد ", "mode_fhpath": "‫ابزار مداد ",
"mode_line": "‫ابزار خط ", "mode_line": "‫ابزار خط ",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "‫مستطیل با قابلیت تغییر پویا‬", "mode_fhrect": "‫مستطیل با قابلیت تغییر پویا‬",
"mode_ellipse": "‫بیضی‬", "mode_ellipse": "‫بیضی‬",
"mode_circle": "‫دایره‬", "mode_circle": "‫دایره‬",
"mode_fhellipse": "‫بیضی با قابلیت تغییر پویا‬", "mode_fhellipse": "‫بیضی با قابلیت تغییر پویا‬",
"mode_path": "‫ابزار مسیر ", "mode_path": "‫ابزار مسیر ",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "‫ابزار متن ", "mode_text": "‫ابزار متن ",
"mode_image": "‫ابزار تصویر ", "mode_image": "‫ابزار تصویر ",
"mode_zoom": "‫ابزار بزرگ نمایی ", "mode_zoom": "‫ابزار بزرگ نمایی ",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "‫واگرد ", "undo": "‫واگرد ",
"redo": "‫ازنو ", "redo": "‫ازنو ",
"tool_source": "‫ویرایش منبع ", "tool_source": "‫ویرایش منبع ",
"wireframe_mode": "‫حالت نمایش لبه ها ", "wireframe_mode": "‫حالت نمایش لبه ها ",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "‫قرار دادن عناصر در گروه ", "group_elements": "‫قرار دادن عناصر در گروه ",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "‫تبدیل به مسیر‬", "to_path": "‫تبدیل به مسیر‬",
"reorient_path": "‫جهت دهی مجدد مسیر‬", "reorient_path": "‫جهت دهی مجدد مسیر‬",
"ungroup": "‫خارج کردن عناصر از گروه ", "ungroup": "‫خارج کردن عناصر از گروه ",
"docprops": "‫مشخصات سند ", "docprops": "‫مشخصات سند ",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "‫انتقال به پایین ترین ", "move_bottom": "‫انتقال به پایین ترین ",
"move_top": "‫انتقال به بالاترین ", "move_top": "‫انتقال به بالاترین ",
"node_clone": "‫ایجاد کپی از نقطه‬", "node_clone": "‫ایجاد کپی از نقطه‬",
"node_delete": "‫حذف نقطه‬", "node_delete": "‫حذف نقطه‬",
"node_link": "‫پیوند دادن نقاط کنترل‬", "node_link": "‫پیوند دادن نقاط کنترل‬",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "‫اعمال تغییرات‬", "source_save": "‫اعمال تغییرات‬",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete ": "حذف", "delete ": "حذف",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "‫لایه‬", "layer": "‫لایه‬",
"layers": "Layers", "layers": "Layers",
"del": "‫حذف لایه‬", "del": "‫حذف لایه‬",
"move_down": "‫انتقال لایه به پایین‬", "move_down": "‫انتقال لایه به پایین‬",
"new": "‫لایه جدید‬", "new": "‫لایه جدید‬",
"rename": "‫تغییر نام لایه‬", "rename": "‫تغییر نام لایه‬",
"move_up": "‫انتقال لایه به بالا‬", "move_up": "‫انتقال لایه به بالا‬",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "‫انتقال عناصر به:", "move_elems_to": "‫انتقال عناصر به:",
"move_selected": "‫انتقال عناصر انتخاب شده به یک لایه متفاوت‬" "move_selected": "‫انتقال عناصر انتخاب شده به یک لایه متفاوت‬"
}, },
config: { config: {
"image_props": "‫مشخصات تصویر‬", "image_props": "‫مشخصات تصویر‬",
"doc_title": "‫عنوان‬", "doc_title": "‫عنوان‬",
"doc_dims": "‫ابعاد صفحه مجازی (بوم)", "doc_dims": "‫ابعاد صفحه مجازی (بوم)",
"included_images": "‫تصاویر گنجانده شده‬", "included_images": "‫تصاویر گنجانده شده‬",
"image_opt_embed": "‫داده های جای داده شده (پرونده های محلی)", "image_opt_embed": "‫داده های جای داده شده (پرونده های محلی)",
"image_opt_ref": "‫استفاده از ارجاع به پرونده‬", "image_opt_ref": "‫استفاده از ارجاع به پرونده‬",
"editor_prefs": "‫تنظیمات ویراستار‬", "editor_prefs": "‫تنظیمات ویراستار‬",
"icon_size": "‫اندازه شمایل‬", "icon_size": "‫اندازه شمایل‬",
"language": "‫زبان‬", "language": "‫زبان‬",
"background": "‫پس زمینه ویراستار‬", "background": "‫پس زمینه ویراستار‬",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "‫توجه: پس زمینه همراه تصویر ذخیره نخواهد شد.", "editor_bg_note": "‫توجه: پس زمینه همراه تصویر ذخیره نخواهد شد.",
"icon_large": "‫بزرگ‬", "icon_large": "‫بزرگ‬",
"icon_medium": "‫متوسط‬", "icon_medium": "‫متوسط‬",
"icon_small": "‫کوچک‬", "icon_small": "‫کوچک‬",
"icon_xlarge": "‫خیلی بزرگ‬", "icon_xlarge": "‫خیلی بزرگ‬",
"select_predefined": "‫از پیش تعریف شده را انتخاب کنید:", "select_predefined": "‫از پیش تعریف شده را انتخاب کنید:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "‫مقدار داده شده نامعتبر است‬", "invalidAttrValGiven": "‫مقدار داده شده نامعتبر است‬",
"noContentToFitTo": "‫محتوایی برای هم اندازه شدن وجود ندارد‬", "noContentToFitTo": "‫محتوایی برای هم اندازه شدن وجود ندارد‬",
"dupeLayerName": "‫لایه ای با آن نام وجود دارد!", "dupeLayerName": "‫لایه ای با آن نام وجود دارد!",
"enterUniqueLayerName": "‫لطفا یک نام لایه یکتا انتخاب کنید‬", "enterUniqueLayerName": "‫لطفا یک نام لایه یکتا انتخاب کنید‬",
"enterNewLayerName": "‫لطفا نام لایه جدید را وارد کنید‬", "enterNewLayerName": "‫لطفا نام لایه جدید را وارد کنید‬",
"layerHasThatName": "‫لایه از قبل آن نام را دارد‬", "layerHasThatName": "‫لایه از قبل آن نام را دارد‬",
"QmoveElemsToLayer": "‫عناصر انتخاب شده به لایه '%s' منتقل شوند؟‬", "QmoveElemsToLayer": "‫عناصر انتخاب شده به لایه '%s' منتقل شوند؟‬",
"QwantToClear": "‫آیا مطمئن هستید که می خواهید نقاشی را پاک کنید؟\nاین عمل باعث حذف تاریخچه واگرد شما خواهد شد!", "QwantToClear": "‫آیا مطمئن هستید که می خواهید نقاشی را پاک کنید؟\nاین عمل باعث حذف تاریخچه واگرد شما خواهد شد!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!", "QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "‫در منبع SVG شما خطاهای تجزیه (parse) وجود داشت.\nبه منبع SVG اصلی بازگردانده شود؟‬", "QerrorsRevertToSource": "‫در منبع SVG شما خطاهای تجزیه (parse) وجود داشت.\nبه منبع SVG اصلی بازگردانده شود؟‬",
"QignoreSourceChanges": "‫تغییرات اعمال شده در منبع SVG نادیده گرفته شوند؟‬", "QignoreSourceChanges": "‫تغییرات اعمال شده در منبع SVG نادیده گرفته شوند؟‬",
"featNotSupported": "‫این ویژگی پشتیبانی نشده است‬", "featNotSupported": "‫این ویژگی پشتیبانی نشده است‬",
"enterNewImgURL": "‫نشانی وب (url) تصویر جدید را وارد کنید‬", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "fi", lang: "fi",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Tallentaa", "ok": "Tallentaa",
"cancel": "Peruuta", "cancel": "Peruuta",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Klikkaa muuttaa täyttöväri, Shift-click vaihtaa aivohalvauksen väriä", "palette_info": "Klikkaa muuttaa täyttöväri, Shift-click vaihtaa aivohalvauksen väriä",
"zoom_level": "Muuta suurennustaso", "zoom_level": "Muuta suurennustaso",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Muuta täyttöväri", "fill_color": "Muuta täyttöväri",
"stroke_color": "Muuta aivohalvaus väri", "stroke_color": "Muuta aivohalvaus väri",
"stroke_style": "Muuta aivohalvaus Dash tyyli", "stroke_style": "Muuta aivohalvaus Dash tyyli",
"stroke_width": "Muuta aivohalvaus leveys", "stroke_width": "Muuta aivohalvaus leveys",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Muuta kiertokulma", "angle": "Muuta kiertokulma",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Muuta valitun kohteen läpinäkyvyys", "opacity": "Muuta valitun kohteen läpinäkyvyys",
"circle_cx": "Muuta Circlen CX koordinoida", "circle_cx": "Muuta Circlen CX koordinoida",
"circle_cy": "Muuta Circlen CY koordinoida", "circle_cy": "Muuta Circlen CY koordinoida",
"circle_r": "Muuta ympyrän säde", "circle_r": "Muuta ympyrän säde",
"ellipse_cx": "Muuta ellipsi&#39;s CX koordinoida", "ellipse_cx": "Muuta ellipsi&#39;s CX koordinoida",
"ellipse_cy": "Muuta ellipsi&#39;s CY koordinoida", "ellipse_cy": "Muuta ellipsi&#39;s CY koordinoida",
"ellipse_rx": "Muuta ellipsi&#39;s x säde", "ellipse_rx": "Muuta ellipsi&#39;s x säde",
"ellipse_ry": "Muuta ellipsi n y säde", "ellipse_ry": "Muuta ellipsi n y säde",
"line_x1": "Muuta Linen alkaa x-koordinaatti", "line_x1": "Muuta Linen alkaa x-koordinaatti",
"line_x2": "Muuta Linen päättyy x koordinoida", "line_x2": "Muuta Linen päättyy x koordinoida",
"line_y1": "Muuta Linen alkaa y-koordinaatti", "line_y1": "Muuta Linen alkaa y-koordinaatti",
"line_y2": "Muuta Linen päättyy y koordinoida", "line_y2": "Muuta Linen päättyy y koordinoida",
"rect_height": "Muuta suorakaiteen korkeus", "rect_height": "Muuta suorakaiteen korkeus",
"rect_width": "Muuta suorakaiteen leveys", "rect_width": "Muuta suorakaiteen leveys",
"corner_radius": "Muuta suorakaide Corner Säde", "corner_radius": "Muuta suorakaide Corner Säde",
"image_width": "Muuta kuvan leveys", "image_width": "Muuta kuvan leveys",
"image_height": "Muuta kuvan korkeus", "image_height": "Muuta kuvan korkeus",
"image_url": "Muuta URL", "image_url": "Muuta URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Muuta tekstin sisältö", "text_contents": "Muuta tekstin sisältö",
"font_family": "Muuta Font Family", "font_family": "Muuta Font Family",
"font_size": "Muuta fontin kokoa", "font_size": "Muuta fontin kokoa",
"bold": "Lihavoitu teksti", "bold": "Lihavoitu teksti",
"italic": "Kursivoitu" "italic": "Kursivoitu"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Vaihda taustaväri / sameuden", "bkgnd_color_opac": "Vaihda taustaväri / sameuden",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Sovita Content", "fitToContent": "Sovita Content",
"fit_to_all": "Sovita kaikki content", "fit_to_all": "Sovita kaikki content",
"fit_to_canvas": "Sovita kangas", "fit_to_canvas": "Sovita kangas",
"fit_to_layer_content": "Sovita kerros sisältöön", "fit_to_layer_content": "Sovita kerros sisältöön",
"fit_to_sel": "Sovita valinta", "fit_to_sel": "Sovita valinta",
"align_relative_to": "Kohdista suhteessa ...", "align_relative_to": "Kohdista suhteessa ...",
"relativeTo": "suhteessa:", "relativeTo": "suhteessa:",
"page": "sivulta", "page": "sivulta",
"largest_object": "Suurin kohde", "largest_object": "Suurin kohde",
"selected_objects": "valittujen objektien", "selected_objects": "valittujen objektien",
"smallest_object": "pienin kohde", "smallest_object": "pienin kohde",
"new_doc": "Uusi kuva", "new_doc": "Uusi kuva",
"open_doc": "Avaa kuva", "open_doc": "Avaa kuva",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Keskitä", "align_center": "Keskitä",
"align_left": "Tasaa vasemmalle", "align_left": "Tasaa vasemmalle",
"align_middle": "Kohdista Lähi", "align_middle": "Kohdista Lähi",
"align_right": "Tasaa oikealle", "align_right": "Tasaa oikealle",
"align_top": "Kohdista Top", "align_top": "Kohdista Top",
"mode_select": "Valitse työkalu", "mode_select": "Valitse työkalu",
"mode_fhpath": "Kynätyökalu", "mode_fhpath": "Kynätyökalu",
"mode_line": "Viivatyökalulla", "mode_line": "Viivatyökalulla",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand suorakaide", "mode_fhrect": "Free-Hand suorakaide",
"mode_ellipse": "Soikion", "mode_ellipse": "Soikion",
"mode_circle": "Ympyrään", "mode_circle": "Ympyrään",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Työkalua", "mode_text": "Työkalua",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Suurennustyökalu", "mode_zoom": "Suurennustyökalu",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Kumoa", "undo": "Kumoa",
"redo": "Tulppaamalla ilmakanavan", "redo": "Tulppaamalla ilmakanavan",
"tool_source": "Muokkaa lähdekoodipaketti", "tool_source": "Muokkaa lähdekoodipaketti",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Tuoteryhmään Elements", "group_elements": "Tuoteryhmään Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Asiakirjan ominaisuudet", "docprops": "Asiakirjan ominaisuudet",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Tallentaa", "source_save": "Tallentaa",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Poista Layer", "del": "Poista Layer",
"move_down": "Siirrä Layer alas", "move_down": "Siirrä Layer alas",
"new": "New Layer", "new": "New Layer",
"rename": "Nimeä Layer", "rename": "Nimeä Layer",
"move_up": "Siirrä Layer", "move_up": "Siirrä Layer",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Valitse ennalta:", "select_predefined": "Valitse ennalta:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "fr", lang: "fr",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "Annuler", "cancel": "Annuler",
"key_backspace": "Retour Arr.", "key_backspace": "Retour Arr.",
"key_del": "Suppr.", "key_del": "Suppr.",
"key_down": "Bas", "key_down": "Bas",
"key_up": "Haut", "key_up": "Haut",
"more_opts": "Plus d'options", "more_opts": "Plus d'options",
"url": "URL", "url": "URL",
"width": "Largeur", "width": "Largeur",
"height": "Hauteur" "height": "Hauteur"
}, },
misc: { misc: {
"powered_by": "Propulsé par" "powered_by": "Propulsé par"
}, },
ui: { ui: {
"toggle_stroke_tools": "Montrer/cacher plus d'outils de contour", "toggle_stroke_tools": "Montrer/cacher plus d'outils de contour",
"palette_info": "Cliquer pour changer la couleur de remplissage, Maj+clic pour changer la couleur de contour", "palette_info": "Cliquer pour changer la couleur de remplissage, Maj+clic pour changer la couleur de contour",
"zoom_level": "Changer le niveau de zoom", "zoom_level": "Changer le niveau de zoom",
"panel_drag": "Tirer vers la gauche/droite pour redimensionner le panneau" "panel_drag": "Tirer vers la gauche/droite pour redimensionner le panneau"
}, },
properties: { properties: {
"id": "Identifier l'élément", "id": "Identifier l'élément",
"fill_color": "Changer la couleur de remplissage", "fill_color": "Changer la couleur de remplissage",
"stroke_color": "Changer la couleur du contour", "stroke_color": "Changer la couleur du contour",
"stroke_style": "Changer le style du contour", "stroke_style": "Changer le style du contour",
"stroke_width": "Changer la largeur du contour de 1, Maj+clic pour changer la largeur de 0,1", "stroke_width": "Changer la largeur du contour de 1, Maj+clic pour changer la largeur de 0,1",
"pos_x": "Changer l'abscisse (coordonnée X)", "pos_x": "Changer l'abscisse (coordonnée X)",
"pos_y": "Changer l'ordonnée (coordonnée Y)", "pos_y": "Changer l'ordonnée (coordonnée Y)",
"linecap_butt": "Terminaison : Sur le nœud", "linecap_butt": "Terminaison : Sur le nœud",
"linecap_round": "Terminaison : Arrondie", "linecap_round": "Terminaison : Arrondie",
"linecap_square": "Terminaison : Carrée", "linecap_square": "Terminaison : Carrée",
"linejoin_bevel": "Raccord : Biseauté", "linejoin_bevel": "Raccord : Biseauté",
"linejoin_miter": "Raccord : Droit", "linejoin_miter": "Raccord : Droit",
"linejoin_round": "Raccord : Arrondi", "linejoin_round": "Raccord : Arrondi",
"angle": "Changer l'angle de rotation", "angle": "Changer l'angle de rotation",
"blur": "Changer la valeur du flou gaussien", "blur": "Changer la valeur du flou gaussien",
"opacity": "Changer l'opacité de l'élément sélectionné", "opacity": "Changer l'opacité de l'élément sélectionné",
"circle_cx": "Changer la position horizontale cx du cercle", "circle_cx": "Changer la position horizontale cx du cercle",
"circle_cy": "Changer la position verticale cy du cercle", "circle_cy": "Changer la position verticale cy du cercle",
"circle_r": "Changer le rayon du cercle", "circle_r": "Changer le rayon du cercle",
"ellipse_cx": "Changer la position horizontale cx de l'ellipse", "ellipse_cx": "Changer la position horizontale cx de l'ellipse",
"ellipse_cy": "Changer la position verticale cy de l'ellipse", "ellipse_cy": "Changer la position verticale cy de l'ellipse",
"ellipse_rx": "Changer le rayon horizontal x de l'ellipse", "ellipse_rx": "Changer le rayon horizontal x de l'ellipse",
"ellipse_ry": "Changer le rayon vertical y de l'ellipse", "ellipse_ry": "Changer le rayon vertical y de l'ellipse",
"line_x1": "Changer la position horizontale x de début de la ligne", "line_x1": "Changer la position horizontale x de début de la ligne",
"line_x2": "Changer la position horizontale x de fin de la ligne", "line_x2": "Changer la position horizontale x de fin de la ligne",
"line_y1": "Changer la position verticale y de début de la ligne", "line_y1": "Changer la position verticale y de début de la ligne",
"line_y2": "Changer la position verticale y de fin de la ligne", "line_y2": "Changer la position verticale y de fin de la ligne",
"rect_height": "Changer la hauteur du rectangle", "rect_height": "Changer la hauteur du rectangle",
"rect_width": "Changer la largeur du rectangle", "rect_width": "Changer la largeur du rectangle",
"corner_radius": "Changer le rayon des coins du rectangle", "corner_radius": "Changer le rayon des coins du rectangle",
"image_width": "Changer la largeur de l'image", "image_width": "Changer la largeur de l'image",
"image_height": "Changer la hauteur de l'image", "image_height": "Changer la hauteur de l'image",
"image_url": "Modifier l'URL", "image_url": "Modifier l'URL",
"node_x": "Changer la positon horizontale x du nœud", "node_x": "Changer la positon horizontale x du nœud",
"node_y": "Changer la position verticale y du nœud", "node_y": "Changer la position verticale y du nœud",
"seg_type": "Changer le type du segment", "seg_type": "Changer le type du segment",
"straight_segments": "Droit", "straight_segments": "Droit",
"curve_segments": "Courbe", "curve_segments": "Courbe",
"text_contents": "Changer le contenu du texte", "text_contents": "Changer le contenu du texte",
"font_family": "Changer la famille de police", "font_family": "Changer la famille de police",
"font_size": "Changer la taille de la police", "font_size": "Changer la taille de la police",
"bold": "Texte en gras", "bold": "Texte en gras",
"italic": "Texte en italique" "italic": "Texte en italique"
}, },
tools: { tools: {
"main_menu": "Menu principal", "main_menu": "Menu principal",
"bkgnd_color_opac": "Changer la couleur d'arrière-plan/l'opacité", "bkgnd_color_opac": "Changer la couleur d'arrière-plan/l'opacité",
"connector_no_arrow": "Sans flèches", "connector_no_arrow": "Sans flèches",
"fitToContent": "Ajuster au contenu", "fitToContent": "Ajuster au contenu",
"fit_to_all": "Ajuster à l'ensemble du contenu", "fit_to_all": "Ajuster à l'ensemble du contenu",
"fit_to_canvas": "Ajuster au canevas", "fit_to_canvas": "Ajuster au canevas",
"fit_to_layer_content": "Ajuster au contenu du calque", "fit_to_layer_content": "Ajuster au contenu du calque",
"fit_to_sel": "Ajuster à la sélection", "fit_to_sel": "Ajuster à la sélection",
"align_relative_to": "Aligner par rapport à…", "align_relative_to": "Aligner par rapport à…",
"relativeTo": "par rapport à :", "relativeTo": "par rapport à :",
"page": "page", "page": "page",
"largest_object": "objet le plus gros", "largest_object": "objet le plus gros",
"selected_objects": "objets sélectionnés", "selected_objects": "objets sélectionnés",
"smallest_object": "objet le plus petit", "smallest_object": "objet le plus petit",
"new_doc": "Nouvelle image", "new_doc": "Nouvelle image",
"open_doc": "Ouvrir une image SVG", "open_doc": "Ouvrir une image SVG",
"export_img": "Exporter", "export_img": "Exporter",
"save_doc": "Enregistrer l'image", "save_doc": "Enregistrer l'image",
"import_doc": "Importer une image", "import_doc": "Importer une image",
"align_to_page": "Aligner l'élément à la page", "align_to_page": "Aligner l'élément à la page",
"align_bottom": "Aligner en bas", "align_bottom": "Aligner en bas",
"align_center": "Centrer verticalement", "align_center": "Centrer verticalement",
"align_left": "Aligner à gauche", "align_left": "Aligner à gauche",
"align_middle": "Centrer horizontalement", "align_middle": "Centrer horizontalement",
"align_right": "Aligner à droite", "align_right": "Aligner à droite",
"align_top": "Aligner en haut", "align_top": "Aligner en haut",
"mode_select": "Outil de sélection", "mode_select": "Outil de sélection",
"mode_fhpath": "Crayon à main levée", "mode_fhpath": "Crayon à main levée",
"mode_line": "Tracer des lignes", "mode_line": "Tracer des lignes",
"mode_connect": "Connecter deux objets", "mode_connect": "Connecter deux objets",
"mode_rect": "Outil rectangle", "mode_rect": "Outil rectangle",
"mode_square": "Outil carré", "mode_square": "Outil carré",
"mode_fhrect": "Rectangle à main levée", "mode_fhrect": "Rectangle à main levée",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Cercle", "mode_circle": "Cercle",
"mode_fhellipse": "Ellipse à main levée", "mode_fhellipse": "Ellipse à main levée",
"mode_path": "Outil chemin", "mode_path": "Outil chemin",
"mode_shapelib": "Bibliothèque d'images", "mode_shapelib": "Bibliothèque d'images",
"mode_text": "Outil texte", "mode_text": "Outil texte",
"mode_image": "Outil image", "mode_image": "Outil image",
"mode_zoom": "Zoom", "mode_zoom": "Zoom",
"mode_eyedropper": "Outil pipette", "mode_eyedropper": "Outil pipette",
"no_embed": "NOTE : Cette image ne peut pas être incorporée. Elle sera chargée à cette adresse", "no_embed": "NOTE : Cette image ne peut pas être incorporée. Elle sera chargée à cette adresse",
"undo": "Annuler", "undo": "Annuler",
"redo": "Restaurer", "redo": "Restaurer",
"tool_source": "Modifier la source", "tool_source": "Modifier la source",
"wireframe_mode": "Mode Fil de fer", "wireframe_mode": "Mode Fil de fer",
"toggle_grid": "Montrer/cacher la grille", "toggle_grid": "Montrer/cacher la grille",
"clone": "Cloner élément(s)", "clone": "Cloner élément(s)",
"del": "Supprimer élément(s)", "del": "Supprimer élément(s)",
"group_elements": "Grouper les éléments", "group_elements": "Grouper les éléments",
"make_link": "Créer un hyperlien", "make_link": "Créer un hyperlien",
"set_link_url": "Définir l'URL du lien (laisser vide pour supprimer)", "set_link_url": "Définir l'URL du lien (laisser vide pour supprimer)",
"to_path": "Convertir en chemin", "to_path": "Convertir en chemin",
"reorient_path": "Réorienter le chemin", "reorient_path": "Réorienter le chemin",
"ungroup": "Dégrouper les éléments", "ungroup": "Dégrouper les éléments",
"docprops": "Propriétés du document", "docprops": "Propriétés du document",
"imagelib": "Bibliothèque d'images", "imagelib": "Bibliothèque d'images",
"move_bottom": "Déplacer vers le bas", "move_bottom": "Déplacer vers le bas",
"move_top": "Déplacer vers le haut", "move_top": "Déplacer vers le haut",
"node_clone": "Cloner le nœud", "node_clone": "Cloner le nœud",
"node_delete": "Supprimer le nœud", "node_delete": "Supprimer le nœud",
"node_link": "Rendre les points de contrôle solidaires", "node_link": "Rendre les points de contrôle solidaires",
"add_subpath": "Ajouter un tracé secondaire", "add_subpath": "Ajouter un tracé secondaire",
"openclose_path": "Ouvrir/fermer le sous-chemin", "openclose_path": "Ouvrir/fermer le sous-chemin",
"source_save": "Appliquer les modifications", "source_save": "Appliquer les modifications",
"cut": "Couper", "cut": "Couper",
"copy": "Copier", "copy": "Copier",
"paste": "Coller", "paste": "Coller",
"paste_in_place": "Coller sur place", "paste_in_place": "Coller sur place",
"delete": "Supprimer", "delete": "Supprimer",
"group": "Grouper", "group": "Grouper",
"move_front": "Placer au premier plan", "move_front": "Placer au premier plan",
"move_up": "Avancer d'un plan", "move_up": "Avancer d'un plan",
"move_down": "Reculer d'un plan", "move_down": "Reculer d'un plan",
"move_back": "Placer au fond" "move_back": "Placer au fond"
}, },
layers: { layers: {
"layer": "Calque", "layer": "Calque",
"layers": "Calques", "layers": "Calques",
"del": "Supprimer le calque", "del": "Supprimer le calque",
"move_down": "Descendre le calque", "move_down": "Descendre le calque",
"new": "Nouveau calque", "new": "Nouveau calque",
"rename": "Renommer le calque", "rename": "Renommer le calque",
"move_up": "Monter le calque", "move_up": "Monter le calque",
"dupe": "Dupliquer le calque", "dupe": "Dupliquer le calque",
"merge_down": "Fusionner vers le bas", "merge_down": "Fusionner vers le bas",
"merge_all": "Tout fusionner", "merge_all": "Tout fusionner",
"move_elems_to": "Déplacer les éléments vers :", "move_elems_to": "Déplacer les éléments vers :",
"move_selected": "Déplacer les éléments sélectionnés vers un autre calque" "move_selected": "Déplacer les éléments sélectionnés vers un autre calque"
}, },
config: { config: {
"image_props": "Propriétés de l'image", "image_props": "Propriétés de l'image",
"doc_title": "Titre", "doc_title": "Titre",
"doc_dims": "Dimensions du canevas", "doc_dims": "Dimensions du canevas",
"included_images": "Images insérées", "included_images": "Images insérées",
"image_opt_embed": "Incorporer les données des images (fichiers locaux)", "image_opt_embed": "Incorporer les données des images (fichiers locaux)",
"image_opt_ref": "Utiliser l'adresse des fichiers", "image_opt_ref": "Utiliser l'adresse des fichiers",
"editor_prefs": "Préférences de l'éditeur", "editor_prefs": "Préférences de l'éditeur",
"icon_size": "Taille des icônes", "icon_size": "Taille des icônes",
"language": "Langue", "language": "Langue",
"background": "Toile de fond de l'éditeur", "background": "Toile de fond de l'éditeur",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note : La toile de fond ne sera pas sauvegardée avec l'image.", "editor_bg_note": "Note : La toile de fond ne sera pas sauvegardée avec l'image.",
"icon_large": "Grande", "icon_large": "Grande",
"icon_medium": "Moyenne", "icon_medium": "Moyenne",
"icon_small": "Petite", "icon_small": "Petite",
"icon_xlarge": "Super grande", "icon_xlarge": "Super grande",
"select_predefined": "Sélectionner prédéfinis :", "select_predefined": "Sélectionner prédéfinis :",
"units_and_rulers": "Unités et règles", "units_and_rulers": "Unités et règles",
"show_rulers": "Afficher les règles", "show_rulers": "Afficher les règles",
"base_unit": "Unité de mesure :", "base_unit": "Unité de mesure :",
"grid": "Grille", "grid": "Grille",
"snapping_onoff": "Ancrer oui/non", "snapping_onoff": "Ancrer oui/non",
"snapping_stepsize": "Pas d'ancrage :", "snapping_stepsize": "Pas d'ancrage :",
"grid_color": "Couleur de la grille" "grid_color": "Couleur de la grille"
}, },
shape_cats: { shape_cats: {
"basic": "Basique", "basic": "Basique",
"object": "Objets", "object": "Objets",
"symbol": "Symboles", "symbol": "Symboles",
"arrow": "Flèches", "arrow": "Flèches",
"flowchart": "Diagramme de flux", "flowchart": "Diagramme de flux",
"animal": "Animaux", "animal": "Animaux",
"game": "Cartes & Échecs", "game": "Cartes & Échecs",
"dialog_balloon": "Bulles de dialogue", "dialog_balloon": "Bulles de dialogue",
"electronics": "Électronique", "electronics": "Électronique",
"math": "Mathématiques", "math": "Mathématiques",
"music": "Musique", "music": "Musique",
"misc": "Divers", "misc": "Divers",
"raphael_1": "raphaeljs.com ensemble 1", "raphael_1": "raphaeljs.com ensemble 1",
"raphael_2": "raphaeljs.com ensemble 2" "raphael_2": "raphaeljs.com ensemble 2"
}, },
imagelib: { imagelib: {
"select_lib": "Choisir une bibliothèque d'images", "select_lib": "Choisir une bibliothèque d'images",
"show_list": "Afficher la liste de la bibliothèque", "show_list": "Afficher la liste de la bibliothèque",
"import_single": "Importation simple", "import_single": "Importation simple",
"import_multi": "Importation multiple", "import_multi": "Importation multiple",
"open": "Ouvrir en tant que nouveau document" "open": "Ouvrir en tant que nouveau document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Valeur fournie invalide", "invalidAttrValGiven": "Valeur fournie invalide",
"noContentToFitTo": "Il n'y a pas de contenu auquel ajuster", "noContentToFitTo": "Il n'y a pas de contenu auquel ajuster",
"dupeLayerName": "Un autre calque porte déjà ce nom !", "dupeLayerName": "Un autre calque porte déjà ce nom !",
"enterUniqueLayerName": "Veuillez entrer un nom (unique) pour le calque", "enterUniqueLayerName": "Veuillez entrer un nom (unique) pour le calque",
"enterNewLayerName": "Veuillez entrer le nouveau nom du calque", "enterNewLayerName": "Veuillez entrer le nouveau nom du calque",
"layerHasThatName": "Le calque porte déjà ce nom", "layerHasThatName": "Le calque porte déjà ce nom",
"QmoveElemsToLayer": "Déplacer les éléments sélectionnés vers le calque « %s » ?", "QmoveElemsToLayer": "Déplacer les éléments sélectionnés vers le calque « %s » ?",
"QwantToClear": "Voulez-vous effacer le dessin ?\nL'historique de vos actions sera également effacé !", "QwantToClear": "Voulez-vous effacer le dessin ?\nL'historique de vos actions sera également effacé !",
"QwantToOpen": "Voulez-vous ouvrir un nouveau document ?\nVous perdrez l'historique de vos modifications !", "QwantToOpen": "Voulez-vous ouvrir un nouveau document ?\nVous perdrez l'historique de vos modifications !",
"QerrorsRevertToSource": "Il y a des erreurs de syntaxe dans votre code source SVG.\nRestaurer le code source SVG antérieur aux modifications ?", "QerrorsRevertToSource": "Il y a des erreurs de syntaxe dans votre code source SVG.\nRestaurer le code source SVG antérieur aux modifications ?",
"QignoreSourceChanges": "Ignorer les modifications faites à la source SVG ?", "QignoreSourceChanges": "Ignorer les modifications faites à la source SVG ?",
"featNotSupported": "Fonction non supportée", "featNotSupported": "Fonction non supportée",
"enterNewImgURL": "Entrer la nouvelle URL de l'image", "enterNewImgURL": "Entrer la nouvelle URL de l'image",
"defsFailOnSave": "NOTE : En raison d'un bogue dans votre navigateur, il se peut que cette image ne soit pas correctement affichée (dégradés ou éléments manquants). Le souci sera néanmoins réglé à la sauvegarde.", "defsFailOnSave": "NOTE : En raison d'un bogue dans votre navigateur, il se peut que cette image ne soit pas correctement affichée (dégradés ou éléments manquants). Le souci sera néanmoins réglé à la sauvegarde.",
"loadingImage": "Chargement de l'image, veuillez patienter…", "loadingImage": "Chargement de l'image, veuillez patienter…",
"saveFromBrowser": "Sélectionner « Enregistrer sous… » dans votre navigateur pour sauvegarder l'image en tant que fichier %s.", "saveFromBrowser": "Sélectionner « Enregistrer sous… » dans votre navigateur pour sauvegarder l'image en tant que fichier %s.",
"noteTheseIssues": "Notez également les problèmes suivants : ", "noteTheseIssues": "Notez également les problèmes suivants : ",
"unsavedChanges": "Il y a des changements non sauvegardés.", "unsavedChanges": "Il y a des changements non sauvegardés.",
"enterNewLinkURL": "Entrez la nouvelle URL de l'hyperlien", "enterNewLinkURL": "Entrez la nouvelle URL de l'hyperlien",
"errorLoadingSVG": "Erreur : Impossible de charger les données SVG", "errorLoadingSVG": "Erreur : Impossible de charger les données SVG",
"URLloadFail": "Impossible de charger l'URL", "URLloadFail": "Impossible de charger l'URL",
"retrieving": "Récupération de « %s »…" "retrieving": "Récupération de « %s »…"
}, },
confirmSetStorage: { confirmSetStorage: {
message: "Par défaut et si supporté, SVG-Edit peut stocker les préférences de l'éditeur " + message: "Par défaut et si supporté, SVG-Edit peut stocker les préférences de l'éditeur " +
"et le contenu SVG localement sur votre machine de sorte que vous n'ayez pas besoin de les " + "et le contenu SVG localement sur votre machine de sorte que vous n'ayez pas besoin de les " +
"rajouter chaque fois que vous chargez SVG-Edit. Si, pour des raisons de confidentialité, " + "rajouter chaque fois que vous chargez SVG-Edit. Si, pour des raisons de confidentialité, " +
"vous ne souhaitez pas stocker ces données sur votre machine, vous pouvez changer ce " + "vous ne souhaitez pas stocker ces données sur votre machine, vous pouvez changer ce " +
"comportement ci-dessous.", "comportement ci-dessous.",
storagePrefsAndContent: "Stocker les préférences et le contenu SVG localement", storagePrefsAndContent: "Stocker les préférences et le contenu SVG localement",
storagePrefsOnly: "Ne stocker localement que les préférences", storagePrefsOnly: "Ne stocker localement que les préférences",
storagePrefs: "Stocker les préférences localement", storagePrefs: "Stocker les préférences localement",
storageNoPrefsOrContent: "Ne stocker ni mes préférences ni mon contenu SVG localement", storageNoPrefsOrContent: "Ne stocker ni mes préférences ni mon contenu SVG localement",
storageNoPrefs: "Ne pas stocker mes préférences localement", storageNoPrefs: "Ne pas stocker mes préférences localement",
rememberLabel: "Se souvenir de ce choix ?", rememberLabel: "Se souvenir de ce choix ?",
rememberTooltip: "Si vous choisissez de désactiver le stockage en mémorisant le choix, l'URL va changer afin que la question ne vous soit plus reposée." rememberTooltip: "Si vous choisissez de désactiver le stockage en mémorisant le choix, l'URL va changer afin que la question ne vous soit plus reposée."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "fy", lang: "fy",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Ok", "ok": "Ok",
"cancel": "Ôfbrekke", "cancel": "Ôfbrekke",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "omleech", "key_down": "omleech",
"key_up": "omheech", "key_up": "omheech",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Klik om de folkleur te feroarjen, shift-klik om de linekleur te feroarjen.", "palette_info": "Klik om de folkleur te feroarjen, shift-klik om de linekleur te feroarjen.",
"zoom_level": "Yn-/útzoome", "zoom_level": "Yn-/útzoome",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Folkleur oanpasse", "fill_color": "Folkleur oanpasse",
"stroke_color": "Linekleur oanpasse", "stroke_color": "Linekleur oanpasse",
"stroke_style": "Linestijl oanpasse", "stroke_style": "Linestijl oanpasse",
"stroke_width": "Linebreedte oanpasse", "stroke_width": "Linebreedte oanpasse",
"pos_x": "X-koördinaat oanpasse", "pos_x": "X-koördinaat oanpasse",
"pos_y": "Y-koördinaat oanpasse", "pos_y": "Y-koördinaat oanpasse",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Draaie", "angle": "Draaie",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Trochsichtigens oanpasse", "opacity": "Trochsichtigens oanpasse",
"circle_cx": "Feroarje it X-koördinaat fan it middelpunt fan'e sirkel.", "circle_cx": "Feroarje it X-koördinaat fan it middelpunt fan'e sirkel.",
"circle_cy": "Feroarje it Y-koördinaat fan it middelpunt fan'e sirkel.", "circle_cy": "Feroarje it Y-koördinaat fan it middelpunt fan'e sirkel.",
"circle_r": "Feroarje sirkelradius", "circle_r": "Feroarje sirkelradius",
"ellipse_cx": "Feroarje it X-koördinaat fan it middelpunt fan'e ellips.", "ellipse_cx": "Feroarje it X-koördinaat fan it middelpunt fan'e ellips.",
"ellipse_cy": "Feroarje it Y-koördinaat fan it middelpunt fan'e ellips.", "ellipse_cy": "Feroarje it Y-koördinaat fan it middelpunt fan'e ellips.",
"ellipse_rx": "Feroarje ellips X radius", "ellipse_rx": "Feroarje ellips X radius",
"ellipse_ry": "Feroarje ellips Y radius", "ellipse_ry": "Feroarje ellips Y radius",
"line_x1": "Feroarje start X koördinaat fan'e line", "line_x1": "Feroarje start X koördinaat fan'e line",
"line_x2": "Feroarje ein X koördinaat fan'e line", "line_x2": "Feroarje ein X koördinaat fan'e line",
"line_y1": "Feroarje start Y koördinaat fan'e line", "line_y1": "Feroarje start Y koördinaat fan'e line",
"line_y2": "Feroarje ein Y koördinaat fan'e line", "line_y2": "Feroarje ein Y koördinaat fan'e line",
"rect_height": "Hichte rjochthoeke oanpasse", "rect_height": "Hichte rjochthoeke oanpasse",
"rect_width": "Breedte rjochthoeke oanpasse", "rect_width": "Breedte rjochthoeke oanpasse",
"corner_radius": "Hoekeradius oanpasse", "corner_radius": "Hoekeradius oanpasse",
"image_width": "Breedte ôfbielding oanpasse", "image_width": "Breedte ôfbielding oanpasse",
"image_height": "Hichte ôfbielding oanpasse", "image_height": "Hichte ôfbielding oanpasse",
"image_url": "URL oanpasse", "image_url": "URL oanpasse",
"node_x": "X-koördinaat knooppunt oanpasse", "node_x": "X-koördinaat knooppunt oanpasse",
"node_y": "Y-koördinaat knooppunt oanpasse", "node_y": "Y-koördinaat knooppunt oanpasse",
"seg_type": "Segmenttype oanpasse", "seg_type": "Segmenttype oanpasse",
"straight_segments": "Rjocht", "straight_segments": "Rjocht",
"curve_segments": "Bûcht", "curve_segments": "Bûcht",
"text_contents": "Tekst oanpasse", "text_contents": "Tekst oanpasse",
"font_family": "Lettertype oanpasse", "font_family": "Lettertype oanpasse",
"font_size": "Lettergrutte oanpasse", "font_size": "Lettergrutte oanpasse",
"bold": "Fet", "bold": "Fet",
"italic": "Skean" "italic": "Skean"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Eftergrûnkleur/trochsichtigens oanpasse", "bkgnd_color_opac": "Eftergrûnkleur/trochsichtigens oanpasse",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Passe op ynhâld", "fitToContent": "Passe op ynhâld",
"fit_to_all": "Op alle ynhâld passe", "fit_to_all": "Op alle ynhâld passe",
"fit_to_canvas": "Op kanvas passe", "fit_to_canvas": "Op kanvas passe",
"fit_to_layer_content": "Op laachynhâld passe", "fit_to_layer_content": "Op laachynhâld passe",
"fit_to_sel": "Op seleksje passe", "fit_to_sel": "Op seleksje passe",
"align_relative_to": "Útlijne relatyf oan...", "align_relative_to": "Útlijne relatyf oan...",
"relativeTo": "Relatief tsjinoer:", "relativeTo": "Relatief tsjinoer:",
"page": "Side", "page": "Side",
"largest_object": "Grutste ûnderdiel", "largest_object": "Grutste ûnderdiel",
"selected_objects": "Selektearre ûnderdielen", "selected_objects": "Selektearre ûnderdielen",
"smallest_object": "Lytste ûnderdiel", "smallest_object": "Lytste ûnderdiel",
"new_doc": "Nije ôfbielding", "new_doc": "Nije ôfbielding",
"open_doc": "Ôfbielding iepenje", "open_doc": "Ôfbielding iepenje",
"export_img": "Export", "export_img": "Export",
"save_doc": "Ôfbielding bewarje", "save_doc": "Ôfbielding bewarje",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Ûnder útlijne", "align_bottom": "Ûnder útlijne",
"align_center": "Midden útlijne", "align_center": "Midden útlijne",
"align_left": "Lofts útlijne", "align_left": "Lofts útlijne",
"align_middle": "Midden útlijne", "align_middle": "Midden útlijne",
"align_right": "Rjochts útlijne", "align_right": "Rjochts útlijne",
"align_top": "Boppe útlijne", "align_top": "Boppe útlijne",
"mode_select": "Selektearje", "mode_select": "Selektearje",
"mode_fhpath": "Potlead", "mode_fhpath": "Potlead",
"mode_line": "Line", "mode_line": "Line",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Frije rjochthoeke", "mode_fhrect": "Frije rjochthoeke",
"mode_ellipse": "Ellips", "mode_ellipse": "Ellips",
"mode_circle": "Sirkel", "mode_circle": "Sirkel",
"mode_fhellipse": "Frije ellips", "mode_fhellipse": "Frije ellips",
"mode_path": "Paad", "mode_path": "Paad",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Tekst", "mode_text": "Tekst",
"mode_image": "Ôfbielding", "mode_image": "Ôfbielding",
"mode_zoom": "Zoom", "mode_zoom": "Zoom",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Ungedien meitjse", "undo": "Ungedien meitjse",
"redo": "Op 'e nij", "redo": "Op 'e nij",
"tool_source": "Boarne oanpasse", "tool_source": "Boarne oanpasse",
"wireframe_mode": "Triemodel", "wireframe_mode": "Triemodel",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Ûnderdielen groepearje", "group_elements": "Ûnderdielen groepearje",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Omsette nei paad", "to_path": "Omsette nei paad",
"reorient_path": "Paad opnij orientearje", "reorient_path": "Paad opnij orientearje",
"ungroup": "Groepering opheffe", "ungroup": "Groepering opheffe",
"docprops": "Dokuminteigenskippen", "docprops": "Dokuminteigenskippen",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Nei eftergrûn", "move_bottom": "Nei eftergrûn",
"move_top": "Nei foargrûn", "move_top": "Nei foargrûn",
"node_clone": "Knooppunt duplisearje", "node_clone": "Knooppunt duplisearje",
"node_delete": "Knooppunt fuortsmite", "node_delete": "Knooppunt fuortsmite",
"node_link": "Knooppunten keppelje", "node_link": "Knooppunten keppelje",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Feroarings tapasse", "source_save": "Feroarings tapasse",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Laach", "layer": "Laach",
"layers": "Layers", "layers": "Layers",
"del": "Laach fuortsmite", "del": "Laach fuortsmite",
"move_down": "Laach omleech bringe", "move_down": "Laach omleech bringe",
"new": "Nije laach", "new": "Nije laach",
"rename": "Laach omneame", "rename": "Laach omneame",
"move_up": "Laach omheech bringe", "move_up": "Laach omheech bringe",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Ûnderdielen ferplaate nei:", "move_elems_to": "Ûnderdielen ferplaate nei:",
"move_selected": "Selektearre ûnderdielen ferplaatse nei in oare laach" "move_selected": "Selektearre ûnderdielen ferplaatse nei in oare laach"
}, },
config: { config: {
"image_props": "Ôfbieldingseigenskippen", "image_props": "Ôfbieldingseigenskippen",
"doc_title": "Titel", "doc_title": "Titel",
"doc_dims": "Kanvasgrutte", "doc_dims": "Kanvasgrutte",
"included_images": "Ynslúten ôfbieldingen", "included_images": "Ynslúten ôfbieldingen",
"image_opt_embed": "Ynformaasje tafoege (lokale triemen)", "image_opt_embed": "Ynformaasje tafoege (lokale triemen)",
"image_opt_ref": "Triemreferensje brûke", "image_opt_ref": "Triemreferensje brûke",
"editor_prefs": "Eigenskippen bewurker", "editor_prefs": "Eigenskippen bewurker",
"icon_size": "Ikoangrutte", "icon_size": "Ikoangrutte",
"language": "Taal", "language": "Taal",
"background": "Eftergrûn bewurker", "background": "Eftergrûn bewurker",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Let op: de eftergrûn wurd net mei de ôfbielding bewarre.", "editor_bg_note": "Let op: de eftergrûn wurd net mei de ôfbielding bewarre.",
"icon_large": "Grut", "icon_large": "Grut",
"icon_medium": "Middel", "icon_medium": "Middel",
"icon_small": "Lyts", "icon_small": "Lyts",
"icon_xlarge": "Ekstra grut", "icon_xlarge": "Ekstra grut",
"select_predefined": "Selektearje:", "select_predefined": "Selektearje:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Ferkearde waarde jûn", "invalidAttrValGiven": "Ferkearde waarde jûn",
"noContentToFitTo": "Gjin ynhâld om te passen", "noContentToFitTo": "Gjin ynhâld om te passen",
"dupeLayerName": "Der is al in laach mei dy namme!", "dupeLayerName": "Der is al in laach mei dy namme!",
"enterUniqueLayerName": "Type in unyke laachnamme", "enterUniqueLayerName": "Type in unyke laachnamme",
"enterNewLayerName": "Type in nije laachnamme", "enterNewLayerName": "Type in nije laachnamme",
"layerHasThatName": "Laach hat dy namme al", "layerHasThatName": "Laach hat dy namme al",
"QmoveElemsToLayer": "Selektearre ûnderdielen ferplaatse nei '%s'?", "QmoveElemsToLayer": "Selektearre ûnderdielen ferplaatse nei '%s'?",
"QwantToClear": "Ôfbielding leechmeitsje? Dit sil ek de skiednis fuortsmite!", "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!", "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?", "QerrorsRevertToSource": "Der wiene flaters yn de SVG-boarne.\nWeromgean nei foarige SVG-boarne?",
"QignoreSourceChanges": "Feroarings yn SVG-boarne negeare?", "QignoreSourceChanges": "Feroarings yn SVG-boarne negeare?",
"featNotSupported": "Funksje wurdt net ûndersteund", "featNotSupported": "Funksje wurdt net ûndersteund",
"enterNewImgURL": "Jou de nije URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "ga", lang: "ga",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Sábháil", "ok": "Sábháil",
"cancel": "Cealaigh", "cancel": "Cealaigh",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Cliceáil chun athrú a líonadh dath, aistriú-cliceáil chun dath a athrú stróc", "palette_info": "Cliceáil chun athrú a líonadh dath, aistriú-cliceáil chun dath a athrú stróc",
"zoom_level": "Athraigh súmáil leibhéal", "zoom_level": "Athraigh súmáil leibhéal",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Athraigh an dath a líonadh", "fill_color": "Athraigh an dath a líonadh",
"stroke_color": "Dath stróc Athrú", "stroke_color": "Dath stróc Athrú",
"stroke_style": "Athraigh an stíl Fleasc stróc", "stroke_style": "Athraigh an stíl Fleasc stróc",
"stroke_width": "Leithead stróc Athrú", "stroke_width": "Leithead stróc Athrú",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Uillinn rothlaithe Athrú", "angle": "Uillinn rothlaithe Athrú",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Athraigh roghnaithe teimhneacht mír", "opacity": "Athraigh roghnaithe teimhneacht mír",
"circle_cx": "Athraigh an ciorcal a chomhordú CX", "circle_cx": "Athraigh an ciorcal a chomhordú CX",
"circle_cy": "Athraigh an ciorcal a chomhordú ga", "circle_cy": "Athraigh an ciorcal a chomhordú ga",
"circle_r": "Athraigh an ciorcal&#39;s ga", "circle_r": "Athraigh an ciorcal&#39;s ga",
"ellipse_cx": "Athraigh Éilips&#39;s CX a chomhordú", "ellipse_cx": "Athraigh Éilips&#39;s CX a chomhordú",
"ellipse_cy": "Athraigh an Éilips a chomhordú ga", "ellipse_cy": "Athraigh an Éilips a chomhordú ga",
"ellipse_rx": "Éilips Athraigh an gha x", "ellipse_rx": "Éilips Athraigh an gha x",
"ellipse_ry": "Éilips Athraigh an gha y", "ellipse_ry": "Éilips Athraigh an gha y",
"line_x1": "Athraigh an líne tosaigh a chomhordú x", "line_x1": "Athraigh an líne tosaigh a chomhordú x",
"line_x2": "Athraigh an líne deireadh x chomhordú", "line_x2": "Athraigh an líne deireadh x chomhordú",
"line_y1": "Athraigh an líne tosaigh a chomhordú y", "line_y1": "Athraigh an líne tosaigh a chomhordú y",
"line_y2": "Athrú ar líne deireadh y chomhordú", "line_y2": "Athrú ar líne deireadh y chomhordú",
"rect_height": "Airde dronuilleog Athrú", "rect_height": "Airde dronuilleog Athrú",
"rect_width": "Leithead dronuilleog Athrú", "rect_width": "Leithead dronuilleog Athrú",
"corner_radius": "Athraigh Dronuilleog Cúinne na Ga", "corner_radius": "Athraigh Dronuilleog Cúinne na Ga",
"image_width": "Leithead íomhá Athrú", "image_width": "Leithead íomhá Athrú",
"image_height": "Airde íomhá Athrú", "image_height": "Airde íomhá Athrú",
"image_url": "Athraigh an URL", "image_url": "Athraigh an URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Inneachar Athraigh téacs", "text_contents": "Inneachar Athraigh téacs",
"font_family": "Athraigh an Cló Teaghlaigh", "font_family": "Athraigh an Cló Teaghlaigh",
"font_size": "Athraigh Clómhéid", "font_size": "Athraigh Clómhéid",
"bold": "Trom Téacs", "bold": "Trom Téacs",
"italic": "Iodálach Téacs" "italic": "Iodálach Téacs"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Dath cúlra Athraigh / teimhneacht", "bkgnd_color_opac": "Dath cúlra Athraigh / teimhneacht",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Laghdaigh do gach ábhar", "fit_to_all": "Laghdaigh do gach ábhar",
"fit_to_canvas": "Laghdaigh ar chanbhás", "fit_to_canvas": "Laghdaigh ar chanbhás",
"fit_to_layer_content": "Laghdaigh shraith ábhar a", "fit_to_layer_content": "Laghdaigh shraith ábhar a",
"fit_to_sel": "Laghdaigh a roghnú", "fit_to_sel": "Laghdaigh a roghnú",
"align_relative_to": "Ailínigh i gcomparáid leis ...", "align_relative_to": "Ailínigh i gcomparáid leis ...",
"relativeTo": "i gcomparáid leis:", "relativeTo": "i gcomparáid leis:",
"page": "leathanach", "page": "leathanach",
"largest_object": "réad is mó", "largest_object": "réad is mó",
"selected_objects": "réada tofa", "selected_objects": "réada tofa",
"smallest_object": "lú réad", "smallest_object": "lú réad",
"new_doc": "Íomhá Nua", "new_doc": "Íomhá Nua",
"open_doc": "Íomhá Oscailte", "open_doc": "Íomhá Oscailte",
"export_img": "Export", "export_img": "Export",
"save_doc": "Sábháil Íomhá", "save_doc": "Sábháil Íomhá",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Cineál Bun", "align_bottom": "Cineál Bun",
"align_center": "Ailínigh sa Lár", "align_center": "Ailínigh sa Lár",
"align_left": "Ailínigh ar Chlé", "align_left": "Ailínigh ar Chlé",
"align_middle": "Cineál Middle", "align_middle": "Cineál Middle",
"align_right": "Ailínigh ar Dheis", "align_right": "Ailínigh ar Dheis",
"align_top": "Cineál Barr", "align_top": "Cineál Barr",
"mode_select": "Roghnaigh Uirlis", "mode_select": "Roghnaigh Uirlis",
"mode_fhpath": "Phionsail Uirlis", "mode_fhpath": "Phionsail Uirlis",
"mode_line": "Uirlis Líne", "mode_line": "Uirlis Líne",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Saor Hand Dronuilleog", "mode_fhrect": "Saor Hand Dronuilleog",
"mode_ellipse": "Éilips", "mode_ellipse": "Éilips",
"mode_circle": "Ciorcal", "mode_circle": "Ciorcal",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Téacs Uirlis", "mode_text": "Téacs Uirlis",
"mode_image": "Íomhá Uirlis", "mode_image": "Íomhá Uirlis",
"mode_zoom": "Zúmáil Uirlis", "mode_zoom": "Zúmáil Uirlis",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Cealaigh", "undo": "Cealaigh",
"redo": "Athdhéan", "redo": "Athdhéan",
"tool_source": "Cuir Foinse", "tool_source": "Cuir Foinse",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Eilimintí Grúpa", "group_elements": "Eilimintí Grúpa",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Eilimintí Díghrúpáil", "ungroup": "Eilimintí Díghrúpáil",
"docprops": "Doiciméad Airíonna", "docprops": "Doiciméad Airíonna",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Téigh go Bun", "move_bottom": "Téigh go Bun",
"move_top": "Téigh go Barr", "move_top": "Téigh go Barr",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Sábháil", "source_save": "Sábháil",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Scrios Sraith", "del": "Scrios Sraith",
"move_down": "Bog Sraith Síos", "move_down": "Bog Sraith Síos",
"new": "Sraith Nua", "new": "Sraith Nua",
"rename": "Athainmnigh Sraith", "rename": "Athainmnigh Sraith",
"move_up": "Bog Sraith Suas", "move_up": "Bog Sraith Suas",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Roghnaigh réamhshainithe:", "select_predefined": "Roghnaigh réamhshainithe:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "gl", lang: "gl",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Gardar", "ok": "Gardar",
"cancel": "Cancelar", "cancel": "Cancelar",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Preme aquí para cambiar a cor de recheo, Shift-clic para cambiar a cor do curso", "palette_info": "Preme aquí para cambiar a cor de recheo, Shift-clic para cambiar a cor do curso",
"zoom_level": "Cambiar o nivel de zoom", "zoom_level": "Cambiar o nivel de zoom",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Cambia-la cor de recheo", "fill_color": "Cambia-la cor de recheo",
"stroke_color": "Cambiar a cor do curso", "stroke_color": "Cambiar a cor do curso",
"stroke_style": "Modifica o estilo do trazo do curso", "stroke_style": "Modifica o estilo do trazo do curso",
"stroke_width": "Cambiar o ancho do curso", "stroke_width": "Cambiar o ancho do curso",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Cambiar o ángulo de xiro", "angle": "Cambiar o ángulo de xiro",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Cambia a opacidade elemento seleccionado", "opacity": "Cambia a opacidade elemento seleccionado",
"circle_cx": "Cx Cambiar círculo de coordenadas", "circle_cx": "Cx Cambiar círculo de coordenadas",
"circle_cy": "Círculo Cambio cy coordinar", "circle_cy": "Círculo Cambio cy coordinar",
"circle_r": "Cambiar círculo de raio", "circle_r": "Cambiar círculo de raio",
"ellipse_cx": "Cambiar elipse cx coordinar", "ellipse_cx": "Cambiar elipse cx coordinar",
"ellipse_cy": "Elipse Cambio cy coordinar", "ellipse_cy": "Elipse Cambio cy coordinar",
"ellipse_rx": "Raios X Change elipse", "ellipse_rx": "Raios X Change elipse",
"ellipse_ry": "Radio y Change elipse", "ellipse_ry": "Radio y Change elipse",
"line_x1": "Cambie a liña de partida coordenada x", "line_x1": "Cambie a liña de partida coordenada x",
"line_x2": "Cambie a liña acaba coordenada x", "line_x2": "Cambie a liña acaba coordenada x",
"line_y1": "Cambio na liña do recurso coordinada y", "line_y1": "Cambio na liña do recurso coordinada y",
"line_y2": "Salto de liña acaba coordinada y", "line_y2": "Salto de liña acaba coordinada y",
"rect_height": "Cambiar altura do rectángulo", "rect_height": "Cambiar altura do rectángulo",
"rect_width": "Cambiar a largo rectángulo", "rect_width": "Cambiar a largo rectángulo",
"corner_radius": "Cambiar Corner Rectangle Radius", "corner_radius": "Cambiar Corner Rectangle Radius",
"image_width": "Cambiar o ancho da imaxe", "image_width": "Cambiar o ancho da imaxe",
"image_height": "Cambiar altura da imaxe", "image_height": "Cambiar altura da imaxe",
"image_url": "Cambiar URL", "image_url": "Cambiar URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Cambiar o contido de texto", "text_contents": "Cambiar o contido de texto",
"font_family": "Cambiar fonte Familia", "font_family": "Cambiar fonte Familia",
"font_size": "Mudar tamaño de letra", "font_size": "Mudar tamaño de letra",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Texto en cursiva" "italic": "Texto en cursiva"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Mudar a cor de fondo / Opacidade", "bkgnd_color_opac": "Mudar a cor de fondo / Opacidade",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Axustar ó contido", "fitToContent": "Axustar ó contido",
"fit_to_all": "Axustar a todo o contido", "fit_to_all": "Axustar a todo o contido",
"fit_to_canvas": "Axustar a pantalla", "fit_to_canvas": "Axustar a pantalla",
"fit_to_layer_content": "Axustar o contido da capa de", "fit_to_layer_content": "Axustar o contido da capa de",
"fit_to_sel": "Axustar a selección", "fit_to_sel": "Axustar a selección",
"align_relative_to": "Aliñar en relación a ...", "align_relative_to": "Aliñar en relación a ...",
"relativeTo": "en relación ao:", "relativeTo": "en relación ao:",
"page": "Portada", "page": "Portada",
"largest_object": "maior obxecto", "largest_object": "maior obxecto",
"selected_objects": "obxectos elixidos", "selected_objects": "obxectos elixidos",
"smallest_object": "menor obxecto", "smallest_object": "menor obxecto",
"new_doc": "Nova Imaxe", "new_doc": "Nova Imaxe",
"open_doc": "Abrir Imaxe", "open_doc": "Abrir Imaxe",
"export_img": "Export", "export_img": "Export",
"save_doc": "Gardar Imaxe", "save_doc": "Gardar Imaxe",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align bottom", "align_bottom": "Align bottom",
"align_center": "Centrar", "align_center": "Centrar",
"align_left": "Aliñar á Esquerda", "align_left": "Aliñar á Esquerda",
"align_middle": "Aliñar Medio", "align_middle": "Aliñar Medio",
"align_right": "Aliñar á Dereita", "align_right": "Aliñar á Dereita",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Seleccionar a ferramenta", "mode_select": "Seleccionar a ferramenta",
"mode_fhpath": "Ferramenta Lapis", "mode_fhpath": "Ferramenta Lapis",
"mode_line": "Ferramenta Liña", "mode_line": "Ferramenta Liña",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "Elipse", "mode_ellipse": "Elipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Ferramenta de Texto", "mode_text": "Ferramenta de Texto",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Desfacer", "undo": "Desfacer",
"redo": "Volver", "redo": "Volver",
"tool_source": "Fonte Editar", "tool_source": "Fonte Editar",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Elementos do grupo", "group_elements": "Elementos do grupo",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Elementos Desagrupadas", "ungroup": "Elementos Desagrupadas",
"docprops": "Propriedades do Documento", "docprops": "Propriedades do Documento",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move a Bottom", "move_bottom": "Move a Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Gardar", "source_save": "Gardar",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Move capa inferior", "move_down": "Move capa inferior",
"new": "New Layer", "new": "New Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Seleccione por defecto:", "select_predefined": "Seleccione por defecto:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "he", lang: "he",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "לשמור", "ok": "לשמור",
"cancel": "ביטול", "cancel": "ביטול",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "לחץ כדי לשנות צבע מילוי, לחץ על Shift-לשנות צבע שבץ", "palette_info": "לחץ כדי לשנות צבע מילוי, לחץ על Shift-לשנות צבע שבץ",
"zoom_level": "שינוי גודל תצוגה", "zoom_level": "שינוי גודל תצוגה",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "שינוי צבע מילוי", "fill_color": "שינוי צבע מילוי",
"stroke_color": "שינוי צבע שבץ", "stroke_color": "שינוי צבע שבץ",
"stroke_style": "דש שבץ שינוי סגנון", "stroke_style": "דש שבץ שינוי סגנון",
"stroke_width": "שינוי רוחב שבץ", "stroke_width": "שינוי רוחב שבץ",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "שינוי זווית הסיבוב", "angle": "שינוי זווית הסיבוב",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "שינוי הפריט הנבחר אטימות", "opacity": "שינוי הפריט הנבחר אטימות",
"circle_cx": "CX מעגל של שנה לתאם", "circle_cx": "CX מעגל של שנה לתאם",
"circle_cy": "מעגל שנה של cy לתאם", "circle_cy": "מעגל שנה של cy לתאם",
"circle_r": "מעגל שנה של רדיוס", "circle_r": "מעגל שנה של רדיוס",
"ellipse_cx": "שינוי של אליפסה CX לתאם", "ellipse_cx": "שינוי של אליפסה CX לתאם",
"ellipse_cy": "אליפסה שינוי של cy לתאם", "ellipse_cy": "אליפסה שינוי של cy לתאם",
"ellipse_rx": "אליפסה שינוי של רדיוס x", "ellipse_rx": "אליפסה שינוי של רדיוס x",
"ellipse_ry": "אליפסה שינוי של Y רדיוס", "ellipse_ry": "אליפסה שינוי של Y רדיוס",
"line_x1": "שינוי קו ההתחלה של x לתאם", "line_x1": "שינוי קו ההתחלה של x לתאם",
"line_x2": "שינוי קו הסיום של x לתאם", "line_x2": "שינוי קו הסיום של x לתאם",
"line_y1": "שינוי קו ההתחלה של Y לתאם", "line_y1": "שינוי קו ההתחלה של Y לתאם",
"line_y2": "שינוי קו הסיום של Y לתאם", "line_y2": "שינוי קו הסיום של Y לתאם",
"rect_height": "שינוי גובה המלבן", "rect_height": "שינוי גובה המלבן",
"rect_width": "שינוי רוחב המלבן", "rect_width": "שינוי רוחב המלבן",
"corner_radius": "לשנות מלבן פינת רדיוס", "corner_radius": "לשנות מלבן פינת רדיוס",
"image_width": "שינוי רוחב התמונה", "image_width": "שינוי רוחב התמונה",
"image_height": "שינוי גובה התמונה", "image_height": "שינוי גובה התמונה",
"image_url": "שינוי כתובת", "image_url": "שינוי כתובת",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "שינוי תוכן טקסט", "text_contents": "שינוי תוכן טקסט",
"font_family": "שינוי גופן משפחה", "font_family": "שינוי גופן משפחה",
"font_size": "שנה גודל גופן", "font_size": "שנה גודל גופן",
"bold": "טקסט מודגש", "bold": "טקסט מודגש",
"italic": "טקסט נטוי" "italic": "טקסט נטוי"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "שנה את צבע הרקע / אטימות", "bkgnd_color_opac": "שנה את צבע הרקע / אטימות",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "התאם תוכן", "fitToContent": "התאם תוכן",
"fit_to_all": "התאם התכנים", "fit_to_all": "התאם התכנים",
"fit_to_canvas": "התאם בד", "fit_to_canvas": "התאם בד",
"fit_to_layer_content": "מתאים לתוכן שכבת", "fit_to_layer_content": "מתאים לתוכן שכבת",
"fit_to_sel": "התאם הבחירה", "fit_to_sel": "התאם הבחירה",
"align_relative_to": "יישור ביחס ...", "align_relative_to": "יישור ביחס ...",
"relativeTo": "יחסית:", "relativeTo": "יחסית:",
"page": "דף", "page": "דף",
"largest_object": "האובייקט הגדול", "largest_object": "האובייקט הגדול",
"selected_objects": "elected objects", "selected_objects": "elected objects",
"smallest_object": "הקטן אובייקט", "smallest_object": "הקטן אובייקט",
"new_doc": "תמונה חדשה", "new_doc": "תמונה חדשה",
"open_doc": "פתח תמונה", "open_doc": "פתח תמונה",
"export_img": "Export", "export_img": "Export",
"save_doc": "שמור תמונה", "save_doc": "שמור תמונה",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "יישור תחתון", "align_bottom": "יישור תחתון",
"align_center": "ישור לאמצע", "align_center": "ישור לאמצע",
"align_left": "יישור לשמאל", "align_left": "יישור לשמאל",
"align_middle": "יישור התיכון", "align_middle": "יישור התיכון",
"align_right": "יישור לימין", "align_right": "יישור לימין",
"align_top": "יישור למעלה", "align_top": "יישור למעלה",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "כלי העיפרון", "mode_fhpath": "כלי העיפרון",
"mode_line": "כלי הקו", "mode_line": "כלי הקו",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand מלבן", "mode_fhrect": "Free-Hand מלבן",
"mode_ellipse": "אליפסה", "mode_ellipse": "אליפסה",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand אליפסה", "mode_fhellipse": "Free-Hand אליפסה",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "כלי טקסט", "mode_text": "כלי טקסט",
"mode_image": "כלי תמונה", "mode_image": "כלי תמונה",
"mode_zoom": "זום כלי", "mode_zoom": "זום כלי",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "בטל", "undo": "בטל",
"redo": "בצע שוב", "redo": "בצע שוב",
"tool_source": "מקור ערוך", "tool_source": "מקור ערוך",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "אלמנטים הקבוצה", "group_elements": "אלמנטים הקבוצה",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "אלמנטים פרק קבוצה", "ungroup": "אלמנטים פרק קבוצה",
"docprops": "מאפייני מסמך", "docprops": "מאפייני מסמך",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "הזז למטה", "move_bottom": "הזז למטה",
"move_top": "עבור לראש הדף", "move_top": "עבור לראש הדף",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "לשמור", "source_save": "לשמור",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "מחיקת שכבה", "del": "מחיקת שכבה",
"move_down": "הזז למטה שכבה", "move_down": "הזז למטה שכבה",
"new": "שכבהחדשה", "new": "שכבהחדשה",
"rename": "שינוי שם שכבה", "rename": "שינוי שם שכבה",
"move_up": "העבר שכבה Up", "move_up": "העבר שכבה Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "בחר מוגדרים מראש:", "select_predefined": "בחר מוגדרים מראש:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "hi", lang: "hi",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "बचाना", "ok": "बचाना",
"cancel": "रद्द करें", "cancel": "रद्द करें",
"key_backspace": "बैकस्पेस", "key_backspace": "बैकस्पेस",
"key_del": "हटायें", "key_del": "हटायें",
"key_down": "नीचे", "key_down": "नीचे",
"key_up": "ऊपर", "key_up": "ऊपर",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "रंग बदलने पर क्लिक करें, बदलाव भरने के क्लिक करने के लिए स्ट्रोक का रंग बदलने के लिए", "palette_info": "रंग बदलने पर क्लिक करें, बदलाव भरने के क्लिक करने के लिए स्ट्रोक का रंग बदलने के लिए",
"zoom_level": "बदलें स्तर ज़ूम", "zoom_level": "बदलें स्तर ज़ूम",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "बदलें का रंग भरना", "fill_color": "बदलें का रंग भरना",
"stroke_color": "बदलें स्ट्रोक रंग", "stroke_color": "बदलें स्ट्रोक रंग",
"stroke_style": "बदलें स्ट्रोक डेश शैली", "stroke_style": "बदलें स्ट्रोक डेश शैली",
"stroke_width": "बदलें स्ट्रोक चौड़ाई", "stroke_width": "बदलें स्ट्रोक चौड़ाई",
"pos_x": "X समकक्ष बदलें ", "pos_x": "X समकक्ष बदलें ",
"pos_y": "Y समकक्ष बदलें", "pos_y": "Y समकक्ष बदलें",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "बदलें रोटेशन कोण", "angle": "बदलें रोटेशन कोण",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "पारदर्शिता बदलें", "opacity": "पारदर्शिता बदलें",
"circle_cx": "बदल रहा है चक्र cx समन्वय", "circle_cx": "बदल रहा है चक्र cx समन्वय",
"circle_cy": "परिवर्तन चक्र cy समन्वय है", "circle_cy": "परिवर्तन चक्र cy समन्वय है",
"circle_r": "बदल रहा है चक्र त्रिज्या", "circle_r": "बदल रहा है चक्र त्रिज्या",
"ellipse_cx": "बदलें दीर्घवृत्त है cx समन्वय", "ellipse_cx": "बदलें दीर्घवृत्त है cx समन्वय",
"ellipse_cy": "बदलें दीर्घवृत्त cy समन्वय है", "ellipse_cy": "बदलें दीर्घवृत्त cy समन्वय है",
"ellipse_rx": "बदल रहा है दीर्घवृत्त x त्रिज्या", "ellipse_rx": "बदल रहा है दीर्घवृत्त x त्रिज्या",
"ellipse_ry": "बदल रहा है दीर्घवृत्त y त्रिज्या", "ellipse_ry": "बदल रहा है दीर्घवृत्त y त्रिज्या",
"line_x1": "बदल रहा है लाइन x समन्वय शुरू", "line_x1": "बदल रहा है लाइन x समन्वय शुरू",
"line_x2": "बदल रहा है लाइन x समन्वय समाप्त", "line_x2": "बदल रहा है लाइन x समन्वय समाप्त",
"line_y1": "बदलें रेखा y शुरू हो रहा है समन्वय", "line_y1": "बदलें रेखा y शुरू हो रहा है समन्वय",
"line_y2": "बदलें रेखा y अंत है समन्वय", "line_y2": "बदलें रेखा y अंत है समन्वय",
"rect_height": "बदलें आयत ऊंचाई", "rect_height": "बदलें आयत ऊंचाई",
"rect_width": "बदलें आयत चौड़ाई", "rect_width": "बदलें आयत चौड़ाई",
"corner_radius": "बदलें आयत कॉर्नर त्रिज्या", "corner_radius": "बदलें आयत कॉर्नर त्रिज्या",
"image_width": "बदलें छवि चौड़ाई", "image_width": "बदलें छवि चौड़ाई",
"image_height": "बदलें छवि ऊँचाई", "image_height": "बदलें छवि ऊँचाई",
"image_url": "बदलें यूआरएल", "image_url": "बदलें यूआरएल",
"node_x": "नोड का x समकक्ष बदलें", "node_x": "नोड का x समकक्ष बदलें",
"node_y": "नोड का y समकक्ष बदलें", "node_y": "नोड का y समकक्ष बदलें",
"seg_type": "वर्ग प्रकार बदलें", "seg_type": "वर्ग प्रकार बदलें",
"straight_segments": "सीधे वर्ग", "straight_segments": "सीधे वर्ग",
"curve_segments": "घुमाव", "curve_segments": "घुमाव",
"text_contents": "बदलें पाठ सामग्री", "text_contents": "बदलें पाठ सामग्री",
"font_family": "बदलें फ़ॉन्ट परिवार", "font_family": "बदलें फ़ॉन्ट परिवार",
"font_size": "फ़ॉन्ट का आकार बदलें", "font_size": "फ़ॉन्ट का आकार बदलें",
"bold": "मोटा पाठ", "bold": "मोटा पाठ",
"italic": "इटैलिक पाठ" "italic": "इटैलिक पाठ"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "पृष्ठभूमि का रंग बदल / अस्पष्टता", "bkgnd_color_opac": "पृष्ठभूमि का रंग बदल / अस्पष्टता",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "सामग्री के लिए फिट", "fitToContent": "सामग्री के लिए फिट",
"fit_to_all": "सभी सामग्री के लिए फिट", "fit_to_all": "सभी सामग्री के लिए फिट",
"fit_to_canvas": "फिट कैनवास को", "fit_to_canvas": "फिट कैनवास को",
"fit_to_layer_content": "फिट परत सामग्री के लिए", "fit_to_layer_content": "फिट परत सामग्री के लिए",
"fit_to_sel": "चयन के लिए फिट", "fit_to_sel": "चयन के लिए फिट",
"align_relative_to": "संरेखित करें रिश्तेदार को ...", "align_relative_to": "संरेखित करें रिश्तेदार को ...",
"relativeTo": "रिश्तेदार को:", "relativeTo": "रिश्तेदार को:",
"page": "पृष्ठ", "page": "पृष्ठ",
"largest_object": "सबसे बड़ी वस्तु", "largest_object": "सबसे बड़ी वस्तु",
"selected_objects": "निर्वाचित वस्तुओं", "selected_objects": "निर्वाचित वस्तुओं",
"smallest_object": "छोटी से छोटी वस्तु", "smallest_object": "छोटी से छोटी वस्तु",
"new_doc": "नई छवि", "new_doc": "नई छवि",
"open_doc": "छवि खोलें", "open_doc": "छवि खोलें",
"export_img": "Export", "export_img": "Export",
"save_doc": "सहेजें छवि", "save_doc": "सहेजें छवि",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "तलमेंपंक्तिबद्धकरें", "align_bottom": "तलमेंपंक्तिबद्धकरें",
"align_center": "मध्य में समंजित करें", "align_center": "मध्य में समंजित करें",
"align_left": " पंक्तिबद्ध करें", "align_left": " पंक्तिबद्ध करें",
"align_middle": "मध्य संरेखित करें", "align_middle": "मध्य संरेखित करें",
"align_right": "दायाँपंक्तिबद्धकरें", "align_right": "दायाँपंक्तिबद्धकरें",
"align_top": "शीर्षमेंपंक्तिबद्धकरें", "align_top": "शीर्षमेंपंक्तिबद्धकरें",
"mode_select": "उपकरण चुनें", "mode_select": "उपकरण चुनें",
"mode_fhpath": "पेंसिल उपकरण", "mode_fhpath": "पेंसिल उपकरण",
"mode_line": "लाइन उपकरण", "mode_line": "लाइन उपकरण",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "नि: शुल्क हाथ आयत", "mode_fhrect": "नि: शुल्क हाथ आयत",
"mode_ellipse": "दीर्घवृत्त", "mode_ellipse": "दीर्घवृत्त",
"mode_circle": "वृत्त", "mode_circle": "वृत्त",
"mode_fhellipse": "नि: शुल्क हाथ दीर्घवृत्त", "mode_fhellipse": "नि: शुल्क हाथ दीर्घवृत्त",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "पाठ उपकरण", "mode_text": "पाठ उपकरण",
"mode_image": "छवि उपकरण", "mode_image": "छवि उपकरण",
"mode_zoom": "ज़ूम उपकरण", "mode_zoom": "ज़ूम उपकरण",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "पूर्ववत करें", "undo": "पूर्ववत करें",
"redo": "फिर से करें", "redo": "फिर से करें",
"tool_source": "स्रोत में बदलाव करें", "tool_source": "स्रोत में बदलाव करें",
"wireframe_mode": "रूपरेखा मोड", "wireframe_mode": "रूपरेखा मोड",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "समूह तत्वों", "group_elements": "समूह तत्वों",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "पथ में बदलें", "to_path": "पथ में बदलें",
"reorient_path": "पथ को नई दिशा दें", "reorient_path": "पथ को नई दिशा दें",
"ungroup": "अंश को समूह से अलग करें", "ungroup": "अंश को समूह से अलग करें",
"docprops": "दस्तावेज़ गुण", "docprops": "दस्तावेज़ गुण",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "नीचे ले जाएँ", "move_bottom": "नीचे ले जाएँ",
"move_top": "ऊपर ले जाएँ", "move_top": "ऊपर ले जाएँ",
"node_clone": "नोड क्लोन", "node_clone": "नोड क्लोन",
"node_delete": "नोड हटायें", "node_delete": "नोड हटायें",
"node_link": "कड़ी नियंत्रण बिंदु", "node_link": "कड़ी नियंत्रण बिंदु",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "बचाना", "source_save": "बचाना",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "परत", "layer": "परत",
"layers": "Layers", "layers": "Layers",
"del": "परत हटाएँ", "del": "परत हटाएँ",
"move_down": "परत नीचे ले जाएँ", "move_down": "परत नीचे ले जाएँ",
"new": "नई परत", "new": "नई परत",
"rename": "परत का नाम बदलें", "rename": "परत का नाम बदलें",
"move_up": "परत ऊपर ले जाएँ", "move_up": "परत ऊपर ले जाएँ",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "अंश को ले जाएँ:", "move_elems_to": "अंश को ले जाएँ:",
"move_selected": "चयनित अंश को दूसरी परत पर ले जाएँ" "move_selected": "चयनित अंश को दूसरी परत पर ले जाएँ"
}, },
config: { config: {
"image_props": "छवि के गुण", "image_props": "छवि के गुण",
"doc_title": "शीर्षक", "doc_title": "शीर्षक",
"doc_dims": "कैनवास आयाम", "doc_dims": "कैनवास आयाम",
"included_images": "शामिल छवियाँ", "included_images": "शामिल छवियाँ",
"image_opt_embed": "एम्बेड डेटा (स्थानीय फ़ाइलें)", "image_opt_embed": "एम्बेड डेटा (स्थानीय फ़ाइलें)",
"image_opt_ref": "फाइल के संदर्भ का प्रयोग", "image_opt_ref": "फाइल के संदर्भ का प्रयोग",
"editor_prefs": "संपादक वरीयताएँ", "editor_prefs": "संपादक वरीयताएँ",
"icon_size": "चिह्न का आकार", "icon_size": "चिह्न का आकार",
"language": "भाषा", "language": "भाषा",
"background": "संपादक पृष्ठभूमि", "background": "संपादक पृष्ठभूमि",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "नोट: पृष्ठभूमि छवि के साथ नहीं बचायी जाएगी", "editor_bg_note": "नोट: पृष्ठभूमि छवि के साथ नहीं बचायी जाएगी",
"icon_large": "बड़ा", "icon_large": "बड़ा",
"icon_medium": "मध्यम", "icon_medium": "मध्यम",
"icon_small": "छोटा", "icon_small": "छोटा",
"icon_xlarge": "बहुत बड़ा", "icon_xlarge": "बहुत बड़ा",
"select_predefined": "चुनें पूर्वनिर्धारित:", "select_predefined": "चुनें पूर्वनिर्धारित:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "अमान्य मूल्य", "invalidAttrValGiven": "अमान्य मूल्य",
"noContentToFitTo": "कोई सामग्री फिट करने के लिए उपलब्ध नहीं", "noContentToFitTo": "कोई सामग्री फिट करने के लिए उपलब्ध नहीं",
"dupeLayerName": "इस नाम कि परत पहले से मौजूद है !", "dupeLayerName": "इस नाम कि परत पहले से मौजूद है !",
"enterUniqueLayerName": "कृपया परत का एक अद्वितीय नाम डालें", "enterUniqueLayerName": "कृपया परत का एक अद्वितीय नाम डालें",
"enterNewLayerName": "कृपया परत का एक नया नाम डालें", "enterNewLayerName": "कृपया परत का एक नया नाम डालें",
"layerHasThatName": "परत का पहले से ही यही नाम है", "layerHasThatName": "परत का पहले से ही यही नाम है",
"QmoveElemsToLayer": "चयनित अंश को परत '%s' पर ले जाएँ ?", "QmoveElemsToLayer": "चयनित अंश को परत '%s' पर ले जाएँ ?",
"QwantToClear": "क्या आप छवि साफ़ करना चाहते हैं?\nयह आपके उन्डू इतिहास को भी मिटा देगा!", "QwantToClear": "क्या आप छवि साफ़ करना चाहते हैं?\nयह आपके उन्डू इतिहास को भी मिटा देगा!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!", "QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "आपके एस.वी.जी. स्रोत में त्रुटियों थी.\nक्या आप मूल एस.वी.जी स्रोत पर वापिस जाना चाहते हैं?", "QerrorsRevertToSource": "आपके एस.वी.जी. स्रोत में त्रुटियों थी.\nक्या आप मूल एस.वी.जी स्रोत पर वापिस जाना चाहते हैं?",
"QignoreSourceChanges": "एसवीजी स्रोत से लाये बदलावों को ध्यान न दें?", "QignoreSourceChanges": "एसवीजी स्रोत से लाये बदलावों को ध्यान न दें?",
"featNotSupported": "सुविधा असमर्थित है", "featNotSupported": "सुविधा असमर्थित है",
"enterNewImgURL": "नई छवि URL दर्ज करें", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "hr", lang: "hr",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Spremiti", "ok": "Spremiti",
"cancel": "Odustani", "cancel": "Odustani",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Kliknite promijeniti boju ispune, shift-click to promijeniti boju moždanog udara", "palette_info": "Kliknite promijeniti boju ispune, shift-click to promijeniti boju moždanog udara",
"zoom_level": "Promjena razine zumiranja", "zoom_level": "Promjena razine zumiranja",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Promjena boje ispune", "fill_color": "Promjena boje ispune",
"stroke_color": "Promjena boje moždani udar", "stroke_color": "Promjena boje moždani udar",
"stroke_style": "Promijeni stroke crtica stil", "stroke_style": "Promijeni stroke crtica stil",
"stroke_width": "Promjena širine moždani udar", "stroke_width": "Promjena širine moždani udar",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Promijeni rotation angle", "angle": "Promijeni rotation angle",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Promjena odabrane stavke neprozirnost", "opacity": "Promjena odabrane stavke neprozirnost",
"circle_cx": "Promjena krug&#39;s CX koordinirati", "circle_cx": "Promjena krug&#39;s CX koordinirati",
"circle_cy": "Cy Promijeni krug je koordinirati", "circle_cy": "Cy Promijeni krug je koordinirati",
"circle_r": "Promjena krug je radijusa", "circle_r": "Promjena krug je radijusa",
"ellipse_cx": "Promjena elipsa&#39;s CX koordinirati", "ellipse_cx": "Promjena elipsa&#39;s CX koordinirati",
"ellipse_cy": "Cy Promijeni elipsa je koordinirati", "ellipse_cy": "Cy Promijeni elipsa je koordinirati",
"ellipse_rx": "Promijeniti elipsa&#39;s x polumjer", "ellipse_rx": "Promijeniti elipsa&#39;s x polumjer",
"ellipse_ry": "Promjena elipsa&#39;s y polumjer", "ellipse_ry": "Promjena elipsa&#39;s y polumjer",
"line_x1": "Promijeni linija je početak x koordinatu", "line_x1": "Promijeni linija je početak x koordinatu",
"line_x2": "Promjena linije završetak x koordinatu", "line_x2": "Promjena linije završetak x koordinatu",
"line_y1": "Promijeni linija je početak y koordinatu", "line_y1": "Promijeni linija je početak y koordinatu",
"line_y2": "Promjena linije završetak y koordinatu", "line_y2": "Promjena linije završetak y koordinatu",
"rect_height": "Promijeni pravokutnik visine", "rect_height": "Promijeni pravokutnik visine",
"rect_width": "Promijeni pravokutnik širine", "rect_width": "Promijeni pravokutnik širine",
"corner_radius": "Promijeni Pravokutnik Corner Radius", "corner_radius": "Promijeni Pravokutnik Corner Radius",
"image_width": "Promijeni sliku širine", "image_width": "Promijeni sliku širine",
"image_height": "Promijeni sliku visina", "image_height": "Promijeni sliku visina",
"image_url": "Promijeni URL", "image_url": "Promijeni URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Promjena sadržaja teksta", "text_contents": "Promjena sadržaja teksta",
"font_family": "Promjena fontova", "font_family": "Promjena fontova",
"font_size": "Change font size", "font_size": "Change font size",
"bold": "Podebljani tekst", "bold": "Podebljani tekst",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Promijeni boju pozadine / neprozirnost", "bkgnd_color_opac": "Promijeni boju pozadine / neprozirnost",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Prilagodi na sve sadržaje", "fit_to_all": "Prilagodi na sve sadržaje",
"fit_to_canvas": "Prilagodi na platnu", "fit_to_canvas": "Prilagodi na platnu",
"fit_to_layer_content": "Prilagodi sloj sadržaj", "fit_to_layer_content": "Prilagodi sloj sadržaj",
"fit_to_sel": "Prilagodi odabir", "fit_to_sel": "Prilagodi odabir",
"align_relative_to": "Poravnaj u odnosu na ...", "align_relative_to": "Poravnaj u odnosu na ...",
"relativeTo": "u odnosu na:", "relativeTo": "u odnosu na:",
"page": "stranica", "page": "stranica",
"largest_object": "najveći objekt", "largest_object": "najveći objekt",
"selected_objects": "izabrani objekti", "selected_objects": "izabrani objekti",
"smallest_object": "najmanji objekt", "smallest_object": "najmanji objekt",
"new_doc": "Nove slike", "new_doc": "Nove slike",
"open_doc": "Otvori sliku", "open_doc": "Otvori sliku",
"export_img": "Export", "export_img": "Export",
"save_doc": "Spremanje slike", "save_doc": "Spremanje slike",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Poravnaj dolje", "align_bottom": "Poravnaj dolje",
"align_center": "Centriraj", "align_center": "Centriraj",
"align_left": "Poravnaj lijevo", "align_left": "Poravnaj lijevo",
"align_middle": "Poravnaj Srednji", "align_middle": "Poravnaj Srednji",
"align_right": "Poravnaj desno", "align_right": "Poravnaj desno",
"align_top": "Poravnaj Top", "align_top": "Poravnaj Top",
"mode_select": "Odaberite alat", "mode_select": "Odaberite alat",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Pravokutnik", "mode_fhrect": "Free-Hand Pravokutnik",
"mode_ellipse": "Elipsa", "mode_ellipse": "Elipsa",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Tekst Alat", "mode_text": "Tekst Alat",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Alat za zumiranje", "mode_zoom": "Alat za zumiranje",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Poništi", "undo": "Poništi",
"redo": "Redo", "redo": "Redo",
"tool_source": "Uredi Source", "tool_source": "Uredi Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Grupa Elementi", "group_elements": "Grupa Elementi",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Razgrupiranje Elementi", "ungroup": "Razgrupiranje Elementi",
"docprops": "Svojstva dokumenta", "docprops": "Svojstva dokumenta",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Pomakni na vrh", "move_top": "Pomakni na vrh",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Spremiti", "source_save": "Spremiti",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Brisanje sloja", "del": "Brisanje sloja",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"new": "New Layer", "new": "New Layer",
"rename": "Preimenuj Layer", "rename": "Preimenuj Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Select predefinirane:", "select_predefined": "Select predefinirane:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "hu", lang: "hu",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Ment", "ok": "Ment",
"cancel": "Szakítani", "cancel": "Szakítani",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Kattints ide a változások töltse szín, shift-click változtatni stroke color", "palette_info": "Kattints ide a változások töltse szín, shift-click változtatni stroke color",
"zoom_level": "Change nagyítási", "zoom_level": "Change nagyítási",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Change töltse color", "fill_color": "Change töltse color",
"stroke_color": "Change stroke color", "stroke_color": "Change stroke color",
"stroke_style": "Change stroke kötőjel style", "stroke_style": "Change stroke kötőjel style",
"stroke_width": "Change stroke width", "stroke_width": "Change stroke width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Váltás forgás szög", "angle": "Váltás forgás szög",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "A kijelölt elem opacity", "opacity": "A kijelölt elem opacity",
"circle_cx": "Change kör CX koordináta", "circle_cx": "Change kör CX koordináta",
"circle_cy": "Change kör cy koordináta", "circle_cy": "Change kör cy koordináta",
"circle_r": "Change kör sugara", "circle_r": "Change kör sugara",
"ellipse_cx": "Change ellipszis&#39;s CX koordináta", "ellipse_cx": "Change ellipszis&#39;s CX koordináta",
"ellipse_cy": "Change ellipszis&#39;s cy koordináta", "ellipse_cy": "Change ellipszis&#39;s cy koordináta",
"ellipse_rx": "Change ellipszis&#39;s x sugarú", "ellipse_rx": "Change ellipszis&#39;s x sugarú",
"ellipse_ry": "Change ellipszis&#39;s y sugara", "ellipse_ry": "Change ellipszis&#39;s y sugara",
"line_x1": "A sor kezd x koordináta", "line_x1": "A sor kezd x koordináta",
"line_x2": "A sor vége az x koordináta", "line_x2": "A sor vége az x koordináta",
"line_y1": "A sor kezd y koordináta", "line_y1": "A sor kezd y koordináta",
"line_y2": "A sor vége az y koordináta", "line_y2": "A sor vége az y koordináta",
"rect_height": "Change téglalap magassága", "rect_height": "Change téglalap magassága",
"rect_width": "Change téglalap szélessége", "rect_width": "Change téglalap szélessége",
"corner_radius": "Change téglalap sarok sugara", "corner_radius": "Change téglalap sarok sugara",
"image_width": "Change kép szélessége", "image_width": "Change kép szélessége",
"image_height": "Kép módosítása height", "image_height": "Kép módosítása height",
"image_url": "Change URL", "image_url": "Change URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "A szöveg tartalma", "text_contents": "A szöveg tartalma",
"font_family": "Change Betűcsalád", "font_family": "Change Betűcsalád",
"font_size": "Change font size", "font_size": "Change font size",
"bold": "Félkövér szöveg", "bold": "Félkövér szöveg",
"italic": "Dőlt szöveg" "italic": "Dőlt szöveg"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Change background color / homályosság", "bkgnd_color_opac": "Change background color / homályosság",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Illeszkednek az összes tartalom", "fit_to_all": "Illeszkednek az összes tartalom",
"fit_to_canvas": "Igazítás a vászonra", "fit_to_canvas": "Igazítás a vászonra",
"fit_to_layer_content": "Igazítás a réteg tartalma", "fit_to_layer_content": "Igazítás a réteg tartalma",
"fit_to_sel": "Igazítás a kiválasztási", "fit_to_sel": "Igazítás a kiválasztási",
"align_relative_to": "Képest Igazítás ...", "align_relative_to": "Képest Igazítás ...",
"relativeTo": "relatív hogy:", "relativeTo": "relatív hogy:",
"page": "Page", "page": "Page",
"largest_object": "legnagyobb objektum", "largest_object": "legnagyobb objektum",
"selected_objects": "választott tárgyak", "selected_objects": "választott tárgyak",
"smallest_object": "legkisebb objektum", "smallest_object": "legkisebb objektum",
"new_doc": "Új kép", "new_doc": "Új kép",
"open_doc": "Kép megnyitása", "open_doc": "Kép megnyitása",
"export_img": "Export", "export_img": "Export",
"save_doc": "Kép mentése más", "save_doc": "Kép mentése más",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Alulra igazítás", "align_bottom": "Alulra igazítás",
"align_center": "Középre igazítás", "align_center": "Középre igazítás",
"align_left": "Balra igazítás", "align_left": "Balra igazítás",
"align_middle": "Közép-align", "align_middle": "Közép-align",
"align_right": "Jobbra igazítás", "align_right": "Jobbra igazítás",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Válassza ki az eszközt", "mode_select": "Válassza ki az eszközt",
"mode_fhpath": "Ceruza eszköz", "mode_fhpath": "Ceruza eszköz",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand téglalap", "mode_fhrect": "Free-Hand téglalap",
"mode_ellipse": "Ellipszisszelet", "mode_ellipse": "Ellipszisszelet",
"mode_circle": "Körbe", "mode_circle": "Körbe",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Szöveg eszköz", "mode_text": "Szöveg eszköz",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Visszavon", "undo": "Visszavon",
"redo": "Megismétléséhez", "redo": "Megismétléséhez",
"tool_source": "Szerkesztés Forrás", "tool_source": "Szerkesztés Forrás",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Csoport elemei", "group_elements": "Csoport elemei",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Szétbont elemei", "ungroup": "Szétbont elemei",
"docprops": "Dokumentum tulajdonságai", "docprops": "Dokumentum tulajdonságai",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Mozgatás lefelé", "move_bottom": "Mozgatás lefelé",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Ment", "source_save": "Ment",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Réteg törlése", "del": "Réteg törlése",
"move_down": "Mozgatása lefelé", "move_down": "Mozgatása lefelé",
"new": "Új réteg", "new": "Új réteg",
"rename": "Réteg átnevezése", "rename": "Réteg átnevezése",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Válassza ki előre definiált:", "select_predefined": "Válassza ki előre definiált:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "hy", lang: "hy",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Save", "ok": "Save",
"cancel": "Cancel", "cancel": "Cancel",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Click to change fill color, shift-click to change stroke color", "palette_info": "Click to change fill color, shift-click to change stroke color",
"zoom_level": "Change zoom level", "zoom_level": "Change zoom level",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Change fill color", "fill_color": "Change fill color",
"stroke_color": "Change stroke color", "stroke_color": "Change stroke color",
"stroke_style": "Change stroke dash style", "stroke_style": "Change stroke dash style",
"stroke_width": "Change stroke width", "stroke_width": "Change stroke width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Change rotation angle", "angle": "Change rotation angle",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Change selected item opacity", "opacity": "Change selected item opacity",
"circle_cx": "Change circle's cx coordinate", "circle_cx": "Change circle's cx coordinate",
"circle_cy": "Change circle's cy coordinate", "circle_cy": "Change circle's cy coordinate",
"circle_r": "Change circle's radius", "circle_r": "Change circle's radius",
"ellipse_cx": "Change ellipse's cx coordinate", "ellipse_cx": "Change ellipse's cx coordinate",
"ellipse_cy": "Change ellipse's cy coordinate", "ellipse_cy": "Change ellipse's cy coordinate",
"ellipse_rx": "Change ellipse's x radius", "ellipse_rx": "Change ellipse's x radius",
"ellipse_ry": "Change ellipse's y radius", "ellipse_ry": "Change ellipse's y radius",
"line_x1": "Change line's starting x coordinate", "line_x1": "Change line's starting x coordinate",
"line_x2": "Change line's ending x coordinate", "line_x2": "Change line's ending x coordinate",
"line_y1": "Change line's starting y coordinate", "line_y1": "Change line's starting y coordinate",
"line_y2": "Change line's ending y coordinate", "line_y2": "Change line's ending y coordinate",
"rect_height": "Change rectangle height", "rect_height": "Change rectangle height",
"rect_width": "Change rectangle width", "rect_width": "Change rectangle width",
"corner_radius": "Change Rectangle Corner Radius", "corner_radius": "Change Rectangle Corner Radius",
"image_width": "Change image width", "image_width": "Change image width",
"image_height": "Change image height", "image_height": "Change image height",
"image_url": "Change URL", "image_url": "Change URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Change text contents", "text_contents": "Change text contents",
"font_family": "Change Font Family", "font_family": "Change Font Family",
"font_size": "Change Font Size", "font_size": "Change Font Size",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Change background color/opacity", "bkgnd_color_opac": "Change background color/opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Fit to all content", "fit_to_all": "Fit to all content",
"fit_to_canvas": "Fit to canvas", "fit_to_canvas": "Fit to canvas",
"fit_to_layer_content": "Fit to layer content", "fit_to_layer_content": "Fit to layer content",
"fit_to_sel": "Fit to selection", "fit_to_sel": "Fit to selection",
"align_relative_to": "Align relative to ...", "align_relative_to": "Align relative to ...",
"relativeTo": "relative to:", "relativeTo": "relative to:",
"page": "page", "page": "page",
"largest_object": "largest object", "largest_object": "largest object",
"selected_objects": "elected objects", "selected_objects": "elected objects",
"smallest_object": "smallest object", "smallest_object": "smallest object",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Open SVG", "open_doc": "Open SVG",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Align Center", "align_center": "Align Center",
"align_left": "Align Left", "align_left": "Align Left",
"align_middle": "Align Middle", "align_middle": "Align Middle",
"align_right": "Align Right", "align_right": "Align Right",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Undo", "undo": "Undo",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Group Elements", "group_elements": "Group Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Save", "source_save": "Save",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"new": "New Layer", "new": "New Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Select predefined:", "select_predefined": "Select predefined:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "id", lang: "id",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Simpan", "ok": "Simpan",
"cancel": "Batal", "cancel": "Batal",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Klik untuk mengubah warna mengisi, shift-klik untuk mengubah warna stroke", "palette_info": "Klik untuk mengubah warna mengisi, shift-klik untuk mengubah warna stroke",
"zoom_level": "Mengubah tingkat pembesaran", "zoom_level": "Mengubah tingkat pembesaran",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Ubah warna mengisi", "fill_color": "Ubah warna mengisi",
"stroke_color": "Ubah warna stroke", "stroke_color": "Ubah warna stroke",
"stroke_style": "Ubah gaya dash stroke", "stroke_style": "Ubah gaya dash stroke",
"stroke_width": "Ubah stroke width", "stroke_width": "Ubah stroke width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Ubah sudut rotasi", "angle": "Ubah sudut rotasi",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Mengubah item yang dipilih keburaman", "opacity": "Mengubah item yang dipilih keburaman",
"circle_cx": "Mengubah koordinat lingkaran cx", "circle_cx": "Mengubah koordinat lingkaran cx",
"circle_cy": "Mengubah koordinat cy lingkaran", "circle_cy": "Mengubah koordinat cy lingkaran",
"circle_r": "Ubah jari-jari lingkaran", "circle_r": "Ubah jari-jari lingkaran",
"ellipse_cx": "Ubah elips&#39;s cx koordinat", "ellipse_cx": "Ubah elips&#39;s cx koordinat",
"ellipse_cy": "Ubah elips&#39;s cy koordinat", "ellipse_cy": "Ubah elips&#39;s cy koordinat",
"ellipse_rx": "Ubah elips&#39;s x jari-jari", "ellipse_rx": "Ubah elips&#39;s x jari-jari",
"ellipse_ry": "Ubah elips&#39;s y jari-jari", "ellipse_ry": "Ubah elips&#39;s y jari-jari",
"line_x1": "Ubah baris mulai x koordinat", "line_x1": "Ubah baris mulai x koordinat",
"line_x2": "Ubah baris&#39;s Berakhir x koordinat", "line_x2": "Ubah baris&#39;s Berakhir x koordinat",
"line_y1": "Ubah baris mulai y koordinat", "line_y1": "Ubah baris mulai y koordinat",
"line_y2": "Ubah baris di tiap akhir y koordinat", "line_y2": "Ubah baris di tiap akhir y koordinat",
"rect_height": "Perubahan tinggi persegi panjang", "rect_height": "Perubahan tinggi persegi panjang",
"rect_width": "Ubah persegi panjang lebar", "rect_width": "Ubah persegi panjang lebar",
"corner_radius": "Ubah Corner Rectangle Radius", "corner_radius": "Ubah Corner Rectangle Radius",
"image_width": "Ubah Lebar gambar", "image_width": "Ubah Lebar gambar",
"image_height": "Tinggi gambar Perubahan", "image_height": "Tinggi gambar Perubahan",
"image_url": "Ubah URL", "image_url": "Ubah URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Ubah isi teks", "text_contents": "Ubah isi teks",
"font_family": "Ubah Font Keluarga", "font_family": "Ubah Font Keluarga",
"font_size": "Ubah Ukuran Font", "font_size": "Ubah Ukuran Font",
"bold": "Bold Teks", "bold": "Bold Teks",
"italic": "Italic Teks" "italic": "Italic Teks"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Mengubah warna latar belakang / keburaman", "bkgnd_color_opac": "Mengubah warna latar belakang / keburaman",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Cocok untuk semua konten", "fit_to_all": "Cocok untuk semua konten",
"fit_to_canvas": "Muat kanvas", "fit_to_canvas": "Muat kanvas",
"fit_to_layer_content": "Muat konten lapisan", "fit_to_layer_content": "Muat konten lapisan",
"fit_to_sel": "Fit seleksi", "fit_to_sel": "Fit seleksi",
"align_relative_to": "Rata relatif ...", "align_relative_to": "Rata relatif ...",
"relativeTo": "relatif:", "relativeTo": "relatif:",
"page": "Halaman", "page": "Halaman",
"largest_object": "objek terbesar", "largest_object": "objek terbesar",
"selected_objects": "objek terpilih", "selected_objects": "objek terpilih",
"smallest_object": "objek terkecil", "smallest_object": "objek terkecil",
"new_doc": "Gambar Baru", "new_doc": "Gambar Baru",
"open_doc": "Membuka Image", "open_doc": "Membuka Image",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Rata Bottom", "align_bottom": "Rata Bottom",
"align_center": "Rata Tengah", "align_center": "Rata Tengah",
"align_left": "Rata Kiri", "align_left": "Rata Kiri",
"align_middle": "Rata Tengah", "align_middle": "Rata Tengah",
"align_right": "Rata Kanan", "align_right": "Rata Kanan",
"align_top": "Rata Top", "align_top": "Rata Top",
"mode_select": "Pilih Tool", "mode_select": "Pilih Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Persegi Panjang", "mode_fhrect": "Free-Hand Persegi Panjang",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Lingkaran", "mode_circle": "Lingkaran",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Teks Tool", "mode_text": "Teks Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Undo", "undo": "Undo",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Kelompok Elemen", "group_elements": "Kelompok Elemen",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elemen", "ungroup": "Ungroup Elemen",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Pindah ke Bawah", "move_bottom": "Pindah ke Bawah",
"move_top": "Pindahkan ke Atas", "move_top": "Pindahkan ke Atas",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Simpan", "source_save": "Simpan",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Hapus Layer", "del": "Hapus Layer",
"move_down": "Pindahkan Layer Bawah", "move_down": "Pindahkan Layer Bawah",
"new": "New Layer", "new": "New Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Pindahkan Layer Up", "move_up": "Pindahkan Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Pilih standar:", "select_predefined": "Pilih standar:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "is", lang: "is",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Vista", "ok": "Vista",
"cancel": "Hætta", "cancel": "Hætta",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Smelltu hér til að breyta fylla lit, Shift-smelltu til að breyta högg lit", "palette_info": "Smelltu hér til að breyta fylla lit, Shift-smelltu til að breyta högg lit",
"zoom_level": "Breyta Stækkunarstig", "zoom_level": "Breyta Stækkunarstig",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Breyta fylla color", "fill_color": "Breyta fylla color",
"stroke_color": "Breyta heilablķđfall color", "stroke_color": "Breyta heilablķđfall color",
"stroke_style": "Breyta heilablķđfall þjóta stíl", "stroke_style": "Breyta heilablķđfall þjóta stíl",
"stroke_width": "Breyta heilablķđfall width", "stroke_width": "Breyta heilablķđfall width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Breyting snúningur horn", "angle": "Breyting snúningur horn",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Breyta valin atriði opacity", "opacity": "Breyta valin atriði opacity",
"circle_cx": "Cx Breyta hring er að samræma", "circle_cx": "Cx Breyta hring er að samræma",
"circle_cy": "Breyta hring&#39;s cy samræma", "circle_cy": "Breyta hring&#39;s cy samræma",
"circle_r": "Radíus Breyta hringsins er", "circle_r": "Radíus Breyta hringsins er",
"ellipse_cx": "Breyta sporbaug&#39;s cx samræma", "ellipse_cx": "Breyta sporbaug&#39;s cx samræma",
"ellipse_cy": "Breyta sporbaug&#39;s cy samræma", "ellipse_cy": "Breyta sporbaug&#39;s cy samræma",
"ellipse_rx": "X radíus Breyta sporbaug&#39;s", "ellipse_rx": "X radíus Breyta sporbaug&#39;s",
"ellipse_ry": "Y radíus Breyta sporbaug&#39;s", "ellipse_ry": "Y radíus Breyta sporbaug&#39;s",
"line_x1": "Breyta lína í byrjun x samræma", "line_x1": "Breyta lína í byrjun x samræma",
"line_x2": "Breyta lína&#39;s Ending x samræma", "line_x2": "Breyta lína&#39;s Ending x samræma",
"line_y1": "Breyta lína í byrjun y samræma", "line_y1": "Breyta lína í byrjun y samræma",
"line_y2": "Breyta lína er endir y samræma", "line_y2": "Breyta lína er endir y samræma",
"rect_height": "Breyta rétthyrningur hæð", "rect_height": "Breyta rétthyrningur hæð",
"rect_width": "Skipta rétthyrningur width", "rect_width": "Skipta rétthyrningur width",
"corner_radius": "Breyta rétthyrningur Corner Radíus", "corner_radius": "Breyta rétthyrningur Corner Radíus",
"image_width": "Breyta mynd width", "image_width": "Breyta mynd width",
"image_height": "Breyta mynd hæð", "image_height": "Breyta mynd hæð",
"image_url": "Breyta URL", "image_url": "Breyta URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Breyta texta innihald", "text_contents": "Breyta texta innihald",
"font_family": "Change Leturfjölskylda", "font_family": "Change Leturfjölskylda",
"font_size": "Breyta leturstærð", "font_size": "Breyta leturstærð",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Breyta bakgrunnslit / opacity", "bkgnd_color_opac": "Breyta bakgrunnslit / opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Laga til efni", "fit_to_all": "Laga til efni",
"fit_to_canvas": "Fit á striga", "fit_to_canvas": "Fit á striga",
"fit_to_layer_content": "Laga til lag efni", "fit_to_layer_content": "Laga til lag efni",
"fit_to_sel": "Fit til val", "fit_to_sel": "Fit til val",
"align_relative_to": "Jafna miðað við ...", "align_relative_to": "Jafna miðað við ...",
"relativeTo": "hlutfallslegt til:", "relativeTo": "hlutfallslegt til:",
"page": "síðu", "page": "síðu",
"largest_object": "stærsti hlutinn", "largest_object": "stærsti hlutinn",
"selected_objects": "kjörinn hlutir", "selected_objects": "kjörinn hlutir",
"smallest_object": "lítill hluti", "smallest_object": "lítill hluti",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Opna mynd", "open_doc": "Opna mynd",
"export_img": "Export", "export_img": "Export",
"save_doc": "Spara Image", "save_doc": "Spara Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Jafna Bottom", "align_bottom": "Jafna Bottom",
"align_center": "Jafna Center", "align_center": "Jafna Center",
"align_left": "Vinstri jöfnun", "align_left": "Vinstri jöfnun",
"align_middle": "Jafna Mið", "align_middle": "Jafna Mið",
"align_right": "Hægri jöfnun", "align_right": "Hægri jöfnun",
"align_top": "Jöfnun Top", "align_top": "Jöfnun Top",
"mode_select": "Veldu Tól", "mode_select": "Veldu Tól",
"mode_fhpath": "Blýantur Tól", "mode_fhpath": "Blýantur Tól",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand rétthyrningur", "mode_fhrect": "Free-Hand rétthyrningur",
"mode_ellipse": "Sporbaugur", "mode_ellipse": "Sporbaugur",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Sporbaugur", "mode_fhellipse": "Free-Hand Sporbaugur",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Mynd Tól", "mode_image": "Mynd Tól",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Hætta", "undo": "Hætta",
"redo": "Endurtaka", "redo": "Endurtaka",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Group Elements", "group_elements": "Group Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Færa Bottom", "move_bottom": "Færa Bottom",
"move_top": "Fara efst á síðu", "move_top": "Fara efst á síðu",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Vista", "source_save": "Vista",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Eyða Lag", "del": "Eyða Lag",
"move_down": "Færa Layer Down", "move_down": "Færa Layer Down",
"new": "Lag", "new": "Lag",
"rename": "Endurnefna Lag", "rename": "Endurnefna Lag",
"move_up": "Færa Lag Up", "move_up": "Færa Lag Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Veldu predefined:", "select_predefined": "Veldu predefined:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "it", lang: "it",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Salva", "ok": "Salva",
"cancel": "Annulla", "cancel": "Annulla",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "Canc", "key_del": "Canc",
"key_down": "giù", "key_down": "giù",
"key_up": "su", "key_up": "su",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Mostra/nascondi strumenti per il tratto", "toggle_stroke_tools": "Mostra/nascondi strumenti per il tratto",
"palette_info": "Fare clic per cambiare il colore di riempimento, shift-click per cambiare colore del tratto", "palette_info": "Fare clic per cambiare il colore di riempimento, shift-click per cambiare colore del tratto",
"zoom_level": "Cambia il livello di zoom", "zoom_level": "Cambia il livello di zoom",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identifica l'elemento", "id": "Identifica l'elemento",
"fill_color": "Cambia il colore di riempimento", "fill_color": "Cambia il colore di riempimento",
"stroke_color": "Cambia il colore del tratto", "stroke_color": "Cambia il colore del tratto",
"stroke_style": "Cambia lo stile del tratto", "stroke_style": "Cambia lo stile del tratto",
"stroke_width": "Cambia la larghezza del tratto", "stroke_width": "Cambia la larghezza del tratto",
"pos_x": "Modifica la coordinata x", "pos_x": "Modifica la coordinata x",
"pos_y": "Modifica la coordinata y", "pos_y": "Modifica la coordinata y",
"linecap_butt": "Inizio linea: Punto", "linecap_butt": "Inizio linea: Punto",
"linecap_round": "Inizio linea: Tondo", "linecap_round": "Inizio linea: Tondo",
"linecap_square": "Inizio linea: Quadrato", "linecap_square": "Inizio linea: Quadrato",
"linejoin_bevel": "Giunzione: smussata", "linejoin_bevel": "Giunzione: smussata",
"linejoin_miter": "Giunzione: spezzata", "linejoin_miter": "Giunzione: spezzata",
"linejoin_round": "Giunzione: arrotondata", "linejoin_round": "Giunzione: arrotondata",
"angle": "Cambia l'angolo di rotazione", "angle": "Cambia l'angolo di rotazione",
"blur": "Cambia l'intensità della sfocatura", "blur": "Cambia l'intensità della sfocatura",
"opacity": "Cambia l'opacità dell'oggetto selezionato", "opacity": "Cambia l'opacità dell'oggetto selezionato",
"circle_cx": "Cambia la coordinata Cx del cerchio", "circle_cx": "Cambia la coordinata Cx del cerchio",
"circle_cy": "Cambia la coordinata Cy del cerchio", "circle_cy": "Cambia la coordinata Cy del cerchio",
"circle_r": "Cambia il raggio del cerchio", "circle_r": "Cambia il raggio del cerchio",
"ellipse_cx": "Cambia la coordinata Cx dell'ellisse", "ellipse_cx": "Cambia la coordinata Cx dell'ellisse",
"ellipse_cy": "Cambia la coordinata Cy dell'ellisse", "ellipse_cy": "Cambia la coordinata Cy dell'ellisse",
"ellipse_rx": "Cambia l'asse x dell'ellisse", "ellipse_rx": "Cambia l'asse x dell'ellisse",
"ellipse_ry": "Cambia l'asse y dell'ellisse", "ellipse_ry": "Cambia l'asse y dell'ellisse",
"line_x1": "Modifica la coordinata iniziale x della linea", "line_x1": "Modifica la coordinata iniziale x della linea",
"line_x2": "Modifica la coordinata finale x della linea", "line_x2": "Modifica la coordinata finale x della linea",
"line_y1": "Modifica la coordinata iniziale y della linea", "line_y1": "Modifica la coordinata iniziale y della linea",
"line_y2": "Modifica la coordinata finale y della linea", "line_y2": "Modifica la coordinata finale y della linea",
"rect_height": "Cambia l'altezza rettangolo", "rect_height": "Cambia l'altezza rettangolo",
"rect_width": "Cambia la larghezza rettangolo", "rect_width": "Cambia la larghezza rettangolo",
"corner_radius": "Cambia il raggio dell'angolo", "corner_radius": "Cambia il raggio dell'angolo",
"image_width": "Cambia la larghezza dell'immagine", "image_width": "Cambia la larghezza dell'immagine",
"image_height": "Cambia l'altezza dell'immagine", "image_height": "Cambia l'altezza dell'immagine",
"image_url": "Cambia URL", "image_url": "Cambia URL",
"node_x": "Modifica la coordinata x del nodo", "node_x": "Modifica la coordinata x del nodo",
"node_y": "Modifica la coordinata y del nodo", "node_y": "Modifica la coordinata y del nodo",
"seg_type": "Cambia il tipo di segmento", "seg_type": "Cambia il tipo di segmento",
"straight_segments": "Linea retta", "straight_segments": "Linea retta",
"curve_segments": "Curva", "curve_segments": "Curva",
"text_contents": "Cambia il contenuto del testo", "text_contents": "Cambia il contenuto del testo",
"font_family": "Cambia il tipo di Font", "font_family": "Cambia il tipo di Font",
"font_size": "Modifica dimensione carattere", "font_size": "Modifica dimensione carattere",
"bold": "Grassetto", "bold": "Grassetto",
"italic": "Corsivo" "italic": "Corsivo"
}, },
tools: { tools: {
"main_menu": "Menù principale", "main_menu": "Menù principale",
"bkgnd_color_opac": "Cambia colore/opacità dello sfondo", "bkgnd_color_opac": "Cambia colore/opacità dello sfondo",
"connector_no_arrow": "No freccia", "connector_no_arrow": "No freccia",
"fitToContent": "Adatta al contenuto", "fitToContent": "Adatta al contenuto",
"fit_to_all": "Adatta a tutti i contenuti", "fit_to_all": "Adatta a tutti i contenuti",
"fit_to_canvas": "Adatta all'area di disegno", "fit_to_canvas": "Adatta all'area di disegno",
"fit_to_layer_content": "Adatta al contenuto del livello", "fit_to_layer_content": "Adatta al contenuto del livello",
"fit_to_sel": "Adatta alla selezione", "fit_to_sel": "Adatta alla selezione",
"align_relative_to": "Allineati a ...", "align_relative_to": "Allineati a ...",
"relativeTo": "Rispetto a:", "relativeTo": "Rispetto a:",
"page": "Pagina", "page": "Pagina",
"largest_object": "Oggetto più grande", "largest_object": "Oggetto più grande",
"selected_objects": "Oggetti selezionati", "selected_objects": "Oggetti selezionati",
"smallest_object": "Oggetto più piccolo", "smallest_object": "Oggetto più piccolo",
"new_doc": "Nuova immagine", "new_doc": "Nuova immagine",
"open_doc": "Apri immagine", "open_doc": "Apri immagine",
"export_img": "Export", "export_img": "Export",
"save_doc": "Salva", "save_doc": "Salva",
"import_doc": "Importa SVG", "import_doc": "Importa SVG",
"align_to_page": "Allinea elementi alla pagina", "align_to_page": "Allinea elementi alla pagina",
"align_bottom": "Allinea in basso", "align_bottom": "Allinea in basso",
"align_center": "Allinea al centro", "align_center": "Allinea al centro",
"align_left": "Allinea a sinistra", "align_left": "Allinea a sinistra",
"align_middle": "Allinea al centro", "align_middle": "Allinea al centro",
"align_right": "Allinea a destra", "align_right": "Allinea a destra",
"align_top": "Allinea in alto", "align_top": "Allinea in alto",
"mode_select": "Seleziona", "mode_select": "Seleziona",
"mode_fhpath": "Matita", "mode_fhpath": "Matita",
"mode_line": "Linea", "mode_line": "Linea",
"mode_connect": "Collega due oggetti", "mode_connect": "Collega due oggetti",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Rettangolo a mano libera", "mode_fhrect": "Rettangolo a mano libera",
"mode_ellipse": "Ellisse", "mode_ellipse": "Ellisse",
"mode_circle": "Cerchio", "mode_circle": "Cerchio",
"mode_fhellipse": "Ellisse a mano libera", "mode_fhellipse": "Ellisse a mano libera",
"mode_path": "Spezzata", "mode_path": "Spezzata",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Testo", "mode_text": "Testo",
"mode_image": "Immagine", "mode_image": "Immagine",
"mode_zoom": "Zoom", "mode_zoom": "Zoom",
"mode_eyedropper": "Seleziona colore", "mode_eyedropper": "Seleziona colore",
"no_embed": "NOTA: L'immagine non può essere incorporata: dipenderà dal percorso assoluto per essere vista", "no_embed": "NOTA: L'immagine non può essere incorporata: dipenderà dal percorso assoluto per essere vista",
"undo": "Annulla", "undo": "Annulla",
"redo": "Rifai", "redo": "Rifai",
"tool_source": "Modifica sorgente", "tool_source": "Modifica sorgente",
"wireframe_mode": "Contorno", "wireframe_mode": "Contorno",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Raggruppa elementi", "group_elements": "Raggruppa elementi",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Converti in tracciato", "to_path": "Converti in tracciato",
"reorient_path": "Riallinea", "reorient_path": "Riallinea",
"ungroup": "Separa gli elementi", "ungroup": "Separa gli elementi",
"docprops": "Proprietà del documento", "docprops": "Proprietà del documento",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Sposta in fondo", "move_bottom": "Sposta in fondo",
"move_top": "Sposta in cima", "move_top": "Sposta in cima",
"node_clone": "Clona nodo", "node_clone": "Clona nodo",
"node_delete": "Elimina nodo", "node_delete": "Elimina nodo",
"node_link": "Collegamento tra punti di controllo", "node_link": "Collegamento tra punti di controllo",
"add_subpath": "Aggiungi sotto-percorso", "add_subpath": "Aggiungi sotto-percorso",
"openclose_path": "Apri/chiudi spezzata", "openclose_path": "Apri/chiudi spezzata",
"source_save": "Salva", "source_save": "Salva",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Livello", "layer": "Livello",
"layers": "Layers", "layers": "Layers",
"del": "Elimina il livello", "del": "Elimina il livello",
"move_down": "Sposta indietro il livello", "move_down": "Sposta indietro il livello",
"new": "Nuovo livello", "new": "Nuovo livello",
"rename": "Rinomina il livello", "rename": "Rinomina il livello",
"move_up": "Sposta avanti il livello", "move_up": "Sposta avanti il livello",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Sposta verso:", "move_elems_to": "Sposta verso:",
"move_selected": "Sposta gli elementi in un diverso livello" "move_selected": "Sposta gli elementi in un diverso livello"
}, },
config: { config: {
"image_props": "Proprietà Immagine", "image_props": "Proprietà Immagine",
"doc_title": "Titolo", "doc_title": "Titolo",
"doc_dims": "Dimensioni dell'area di disegno", "doc_dims": "Dimensioni dell'area di disegno",
"included_images": "Immagini incluse", "included_images": "Immagini incluse",
"image_opt_embed": "Incorpora dati (file locali)", "image_opt_embed": "Incorpora dati (file locali)",
"image_opt_ref": "Usa l'identificativo di riferimento", "image_opt_ref": "Usa l'identificativo di riferimento",
"editor_prefs": "Preferenze", "editor_prefs": "Preferenze",
"icon_size": "Dimensione Icona", "icon_size": "Dimensione Icona",
"language": "Lingua", "language": "Lingua",
"background": "Sfondo dell'editor", "background": "Sfondo dell'editor",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Nota: Lo sfondo non verrà salvato con l'immagine.", "editor_bg_note": "Nota: Lo sfondo non verrà salvato con l'immagine.",
"icon_large": "Grande", "icon_large": "Grande",
"icon_medium": "Medio", "icon_medium": "Medio",
"icon_small": "Piccolo", "icon_small": "Piccolo",
"icon_xlarge": "Molto grande", "icon_xlarge": "Molto grande",
"select_predefined": "Selezioni predefinite:", "select_predefined": "Selezioni predefinite:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Valore assegnato non valido", "invalidAttrValGiven": "Valore assegnato non valido",
"noContentToFitTo": "Non c'è contenuto cui adeguarsi", "noContentToFitTo": "Non c'è contenuto cui adeguarsi",
"dupeLayerName": "C'è già un livello con questo nome!", "dupeLayerName": "C'è già un livello con questo nome!",
"enterUniqueLayerName": "Assegna un diverso nome a ciascun livello, grazie!", "enterUniqueLayerName": "Assegna un diverso nome a ciascun livello, grazie!",
"enterNewLayerName": "Assegna un nome al livello", "enterNewLayerName": "Assegna un nome al livello",
"layerHasThatName": "Un livello ha già questo nome", "layerHasThatName": "Un livello ha già questo nome",
"QmoveElemsToLayer": "Sposta gli elementi selezionali al livello '%s'?", "QmoveElemsToLayer": "Sposta gli elementi selezionali al livello '%s'?",
"QwantToClear": "Vuoi cancellare il disegno?\nVerrà eliminato anche lo storico delle modifiche!", "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!", "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?", "QerrorsRevertToSource": "Ci sono errori nel codice sorgente SVG.\nRitorno al codice originale?",
"QignoreSourceChanges": "Ignoro i cambiamenti nel sorgente SVG?", "QignoreSourceChanges": "Ignoro i cambiamenti nel sorgente SVG?",
"featNotSupported": "Caratteristica non supportata", "featNotSupported": "Caratteristica non supportata",
"enterNewImgURL": "Scrivi un nuovo URL per l'immagine", "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.", "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 .", "saveFromBrowser": "Seleziona \"Salva con nome...\" nel browser per salvare l'immagine con nome %s .",
"noteTheseIssues": "Nota le seguenti particolarità: ", "noteTheseIssues": "Nota le seguenti particolarità: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "ja", lang: "ja",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "キャンセル", "cancel": "キャンセル",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "削除", "key_del": "削除",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "クリックで塗りの色を選択、Shift+クリックで線の色を選択", "palette_info": "クリックで塗りの色を選択、Shift+クリックで線の色を選択",
"zoom_level": "ズーム倍率の変更", "zoom_level": "ズーム倍率の変更",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "塗りの色を変更", "fill_color": "塗りの色を変更",
"stroke_color": "線の色を変更", "stroke_color": "線の色を変更",
"stroke_style": "線種の変更", "stroke_style": "線種の変更",
"stroke_width": "線幅の変更", "stroke_width": "線幅の変更",
"pos_x": "X座標を変更", "pos_x": "X座標を変更",
"pos_y": "Y座標を変更", "pos_y": "Y座標を変更",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "回転角の変更", "angle": "回転角の変更",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "不透明度", "opacity": "不透明度",
"circle_cx": "円の中心を変更X座標", "circle_cx": "円の中心を変更X座標",
"circle_cy": "円の中心を変更Y座標", "circle_cy": "円の中心を変更Y座標",
"circle_r": "変更円の半径", "circle_r": "変更円の半径",
"ellipse_cx": "楕円の中心を変更X座標", "ellipse_cx": "楕円の中心を変更X座標",
"ellipse_cy": "楕円の中心を変更Y座標", "ellipse_cy": "楕円の中心を変更Y座標",
"ellipse_rx": "楕円の半径を変更X座標", "ellipse_rx": "楕円の半径を変更X座標",
"ellipse_ry": "楕円の半径を変更Y座標", "ellipse_ry": "楕円の半径を変更Y座標",
"line_x1": "開始X座標", "line_x1": "開始X座標",
"line_x2": "終了X座標", "line_x2": "終了X座標",
"line_y1": "開始Y座標", "line_y1": "開始Y座標",
"line_y2": "終了Y座標", "line_y2": "終了Y座標",
"rect_height": "長方形の高さを変更", "rect_height": "長方形の高さを変更",
"rect_width": "長方形の幅を変更", "rect_width": "長方形の幅を変更",
"corner_radius": "長方形の角の半径を変更", "corner_radius": "長方形の角の半径を変更",
"image_width": "画像の幅を変更", "image_width": "画像の幅を変更",
"image_height": "画像の高さを変更", "image_height": "画像の高さを変更",
"image_url": "URLを変更", "image_url": "URLを変更",
"node_x": "ードのX座標を変更", "node_x": "ードのX座標を変更",
"node_y": "ードのY座標を変更", "node_y": "ードのY座標を変更",
"seg_type": "線分の種類を変更", "seg_type": "線分の種類を変更",
"straight_segments": "直線", "straight_segments": "直線",
"curve_segments": "カーブ", "curve_segments": "カーブ",
"text_contents": "テキストの内容の変更", "text_contents": "テキストの内容の変更",
"font_family": "フォントファミリーの変更", "font_family": "フォントファミリーの変更",
"font_size": "文字サイズの変更", "font_size": "文字サイズの変更",
"bold": "太字", "bold": "太字",
"italic": "イタリック体" "italic": "イタリック体"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "背景色/不透明度の変更", "bkgnd_color_opac": "背景色/不透明度の変更",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "コンテンツに合わせる", "fitToContent": "コンテンツに合わせる",
"fit_to_all": "すべてのコンテンツに合わせる", "fit_to_all": "すべてのコンテンツに合わせる",
"fit_to_canvas": "キャンバスに合わせる", "fit_to_canvas": "キャンバスに合わせる",
"fit_to_layer_content": "レイヤー上のコンテンツに合わせる", "fit_to_layer_content": "レイヤー上のコンテンツに合わせる",
"fit_to_sel": "選択対象に合わせる", "fit_to_sel": "選択対象に合わせる",
"align_relative_to": "揃える", "align_relative_to": "揃える",
"relativeTo": "相対:", "relativeTo": "相対:",
"page": "ページ", "page": "ページ",
"largest_object": "最大のオブジェクト", "largest_object": "最大のオブジェクト",
"selected_objects": "選択オブジェクト", "selected_objects": "選択オブジェクト",
"smallest_object": "最小のオブジェクト", "smallest_object": "最小のオブジェクト",
"new_doc": "新規イメージ", "new_doc": "新規イメージ",
"open_doc": "イメージを開く", "open_doc": "イメージを開く",
"export_img": "Export", "export_img": "Export",
"save_doc": "画像を保存", "save_doc": "画像を保存",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "下揃え", "align_bottom": "下揃え",
"align_center": "中央揃え", "align_center": "中央揃え",
"align_left": "左揃え", "align_left": "左揃え",
"align_middle": "中央揃え", "align_middle": "中央揃え",
"align_right": "右揃え", "align_right": "右揃え",
"align_top": "上揃え", "align_top": "上揃え",
"mode_select": "選択ツール", "mode_select": "選択ツール",
"mode_fhpath": "鉛筆ツール", "mode_fhpath": "鉛筆ツール",
"mode_line": "直線ツール", "mode_line": "直線ツール",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "フリーハンド長方形", "mode_fhrect": "フリーハンド長方形",
"mode_ellipse": "楕円", "mode_ellipse": "楕円",
"mode_circle": "円", "mode_circle": "円",
"mode_fhellipse": "フリーハンド楕円", "mode_fhellipse": "フリーハンド楕円",
"mode_path": "パスツール", "mode_path": "パスツール",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "テキストツール", "mode_text": "テキストツール",
"mode_image": "イメージツール", "mode_image": "イメージツール",
"mode_zoom": "ズームツール", "mode_zoom": "ズームツール",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "元に戻す", "undo": "元に戻す",
"redo": "やり直し", "redo": "やり直し",
"tool_source": "ソースの編集", "tool_source": "ソースの編集",
"wireframe_mode": "ワイヤーフレームで表示 [F]", "wireframe_mode": "ワイヤーフレームで表示 [F]",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "グループ化", "group_elements": "グループ化",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "パスに変換", "to_path": "パスに変換",
"reorient_path": "現在の角度を0度とする", "reorient_path": "現在の角度を0度とする",
"ungroup": "グループ化を解除", "ungroup": "グループ化を解除",
"docprops": "文書のプロパティ", "docprops": "文書のプロパティ",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "奥に移動", "move_bottom": "奥に移動",
"move_top": "手前に移動", "move_top": "手前に移動",
"node_clone": "ノードを複製", "node_clone": "ノードを複製",
"node_delete": "ノードを削除", "node_delete": "ノードを削除",
"node_link": "制御点の接続", "node_link": "制御点の接続",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "適用", "source_save": "適用",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "レイヤ", "layer": "レイヤ",
"layers": "Layers", "layers": "Layers",
"del": "レイヤの削除", "del": "レイヤの削除",
"move_down": "レイヤを下へ移動", "move_down": "レイヤを下へ移動",
"new": "新規レイヤ", "new": "新規レイヤ",
"rename": "レイヤの名前を変更", "rename": "レイヤの名前を変更",
"move_up": "レイヤを上へ移動", "move_up": "レイヤを上へ移動",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "移動先レイヤ:", "move_elems_to": "移動先レイヤ:",
"move_selected": "選択対象を別のレイヤに移動" "move_selected": "選択対象を別のレイヤに移動"
}, },
config: { config: {
"image_props": "イメージの設定", "image_props": "イメージの設定",
"doc_title": "タイトル", "doc_title": "タイトル",
"doc_dims": "キャンバスの大きさ", "doc_dims": "キャンバスの大きさ",
"included_images": "挿入された画像の扱い", "included_images": "挿入された画像の扱い",
"image_opt_embed": "SVGファイルに埋め込む", "image_opt_embed": "SVGファイルに埋め込む",
"image_opt_ref": "画像を参照する", "image_opt_ref": "画像を参照する",
"editor_prefs": "エディタの設定", "editor_prefs": "エディタの設定",
"icon_size": "アイコンの大きさ", "icon_size": "アイコンの大きさ",
"language": "言語", "language": "言語",
"background": "エディタの背景色", "background": "エディタの背景色",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "※背景色はファイルに保存されません。", "editor_bg_note": "※背景色はファイルに保存されません。",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "デフォルト", "select_predefined": "デフォルト",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "無効な値が指定されています。", "invalidAttrValGiven": "無効な値が指定されています。",
"noContentToFitTo": "合わせる対象のコンテンツがありません。", "noContentToFitTo": "合わせる対象のコンテンツがありません。",
"dupeLayerName": "同名のレイヤーが既に存在します。", "dupeLayerName": "同名のレイヤーが既に存在します。",
"enterUniqueLayerName": "新規レイヤの一意な名前を入力してください。", "enterUniqueLayerName": "新規レイヤの一意な名前を入力してください。",
"enterNewLayerName": "レイヤの新しい名前を入力してください。", "enterNewLayerName": "レイヤの新しい名前を入力してください。",
"layerHasThatName": "既に同名が付いています。", "layerHasThatName": "既に同名が付いています。",
"QmoveElemsToLayer": "選択した要素をレイヤー '%s' に移動しますか?", "QmoveElemsToLayer": "選択した要素をレイヤー '%s' に移動しますか?",
"QwantToClear": "キャンバスをクリアしますか?\nアンドゥ履歴も消去されます。", "QwantToClear": "キャンバスをクリアしますか?\nアンドゥ履歴も消去されます。",
"QwantToOpen": "新しいファイルを開きますか?\nアンドゥ履歴も消去されます。", "QwantToOpen": "新しいファイルを開きますか?\nアンドゥ履歴も消去されます。",
"QerrorsRevertToSource": "ソースにエラーがあります。\n元のソースに戻しますか", "QerrorsRevertToSource": "ソースにエラーがあります。\n元のソースに戻しますか",
"QignoreSourceChanges": "ソースの変更を無視しますか?", "QignoreSourceChanges": "ソースの変更を無視しますか?",
"featNotSupported": "機能はサポートされていません。", "featNotSupported": "機能はサポートされていません。",
"enterNewImgURL": "画像のURLを入力してください。", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "ko", lang: "ko",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "저장", "ok": "저장",
"cancel": "취소", "cancel": "취소",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "색상을 클릭, 근무 시간 채우기 스트로크 색상을 변경하려면 변경하려면", "palette_info": "색상을 클릭, 근무 시간 채우기 스트로크 색상을 변경하려면 변경하려면",
"zoom_level": "변경 수준으로 확대", "zoom_level": "변경 수준으로 확대",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "채우기 색상 변경", "fill_color": "채우기 색상 변경",
"stroke_color": "뇌졸중으로 색상 변경", "stroke_color": "뇌졸중으로 색상 변경",
"stroke_style": "뇌졸중 변경 대시 스타일", "stroke_style": "뇌졸중 변경 대시 스타일",
"stroke_width": "뇌졸중 너비 변경", "stroke_width": "뇌졸중 너비 변경",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "회전 각도를 변경", "angle": "회전 각도를 변경",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "변경 항목을 선택 불투명도", "opacity": "변경 항목을 선택 불투명도",
"circle_cx": "변경 동그라미 CX는 좌표", "circle_cx": "변경 동그라미 CX는 좌표",
"circle_cy": "동그라미 싸이 변경 조정할 수있어", "circle_cy": "동그라미 싸이 변경 조정할 수있어",
"circle_r": "변경 원의 반지름", "circle_r": "변경 원의 반지름",
"ellipse_cx": "CX는 타원의 좌표 변경", "ellipse_cx": "CX는 타원의 좌표 변경",
"ellipse_cy": "싸이 타원 변경 조정할 수있어", "ellipse_cy": "싸이 타원 변경 조정할 수있어",
"ellipse_rx": "변경 타원의 x 반지름", "ellipse_rx": "변경 타원의 x 반지름",
"ellipse_ry": "변경 타원의 y를 반경", "ellipse_ry": "변경 타원의 y를 반경",
"line_x1": "변경 라인의 X 좌표 시작", "line_x1": "변경 라인의 X 좌표 시작",
"line_x2": "변경 라인의 X 좌표 결말", "line_x2": "변경 라인의 X 좌표 결말",
"line_y1": "라인 변경 y를 시작 좌표", "line_y1": "라인 변경 y를 시작 좌표",
"line_y2": "라인 변경 y를 결말의 좌표", "line_y2": "라인 변경 y를 결말의 좌표",
"rect_height": "사각형의 높이를 변경", "rect_height": "사각형의 높이를 변경",
"rect_width": "사각형의 너비 변경", "rect_width": "사각형의 너비 변경",
"corner_radius": "변경 직사각형 코너 반경", "corner_radius": "변경 직사각형 코너 반경",
"image_width": "이미지 변경 폭", "image_width": "이미지 변경 폭",
"image_height": "이미지 높이 변경", "image_height": "이미지 높이 변경",
"image_url": "URL 변경", "image_url": "URL 변경",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "텍스트 변경 내용", "text_contents": "텍스트 변경 내용",
"font_family": "글꼴 변경 패밀리", "font_family": "글꼴 변경 패밀리",
"font_size": "글꼴 크기 변경", "font_size": "글꼴 크기 변경",
"bold": "굵은 텍스트", "bold": "굵은 텍스트",
"italic": "기울임꼴 텍스트" "italic": "기울임꼴 텍스트"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "배경 색상 변경 / 투명도", "bkgnd_color_opac": "배경 색상 변경 / 투명도",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "맞춤 콘텐츠", "fitToContent": "맞춤 콘텐츠",
"fit_to_all": "맞춤 모든 콘텐츠에", "fit_to_all": "맞춤 모든 콘텐츠에",
"fit_to_canvas": "맞춤 캔버스", "fit_to_canvas": "맞춤 캔버스",
"fit_to_layer_content": "레이어에 맞게 콘텐츠", "fit_to_layer_content": "레이어에 맞게 콘텐츠",
"fit_to_sel": "맞춤 선택", "fit_to_sel": "맞춤 선택",
"align_relative_to": "정렬 상대적으로 ...", "align_relative_to": "정렬 상대적으로 ...",
"relativeTo": "상대:", "relativeTo": "상대:",
"page": "페이지", "page": "페이지",
"largest_object": "큰 개체", "largest_object": "큰 개체",
"selected_objects": "당선 개체", "selected_objects": "당선 개체",
"smallest_object": "작은 개체", "smallest_object": "작은 개체",
"new_doc": "새 이미지", "new_doc": "새 이미지",
"open_doc": "오픈 이미지", "open_doc": "오픈 이미지",
"export_img": "Export", "export_img": "Export",
"save_doc": "이미지 저장", "save_doc": "이미지 저장",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "히프 정렬", "align_bottom": "히프 정렬",
"align_center": "정렬 센터", "align_center": "정렬 센터",
"align_left": "왼쪽 정렬", "align_left": "왼쪽 정렬",
"align_middle": "중간 정렬", "align_middle": "중간 정렬",
"align_right": "오른쪽 맞춤", "align_right": "오른쪽 맞춤",
"align_top": "정렬 탑", "align_top": "정렬 탑",
"mode_select": "선택 도구", "mode_select": "선택 도구",
"mode_fhpath": "연필 도구", "mode_fhpath": "연필 도구",
"mode_line": "선 도구", "mode_line": "선 도구",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "자유 핸드 직사각형", "mode_fhrect": "자유 핸드 직사각형",
"mode_ellipse": "타원", "mode_ellipse": "타원",
"mode_circle": "동그라미", "mode_circle": "동그라미",
"mode_fhellipse": "자유 핸드 타원", "mode_fhellipse": "자유 핸드 타원",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "텍스트 도구", "mode_text": "텍스트 도구",
"mode_image": "이미지 도구", "mode_image": "이미지 도구",
"mode_zoom": "줌 도구", "mode_zoom": "줌 도구",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "취소", "undo": "취소",
"redo": "재실행", "redo": "재실행",
"tool_source": "수정 소스", "tool_source": "수정 소스",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "그룹 요소", "group_elements": "그룹 요소",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "그룹 해제 요소", "ungroup": "그룹 해제 요소",
"docprops": "문서 속성", "docprops": "문서 속성",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "아래로 이동", "move_bottom": "아래로 이동",
"move_top": "상단으로 이동", "move_top": "상단으로 이동",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "저장", "source_save": "저장",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "레이어 삭제", "del": "레이어 삭제",
"move_down": "레이어 아래로 이동", "move_down": "레이어 아래로 이동",
"new": "새 레이어", "new": "새 레이어",
"rename": "레이어 이름 바꾸기", "rename": "레이어 이름 바꾸기",
"move_up": "레이어 위로 이동", "move_up": "레이어 위로 이동",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "미리 정의된 선택:", "select_predefined": "미리 정의된 선택:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "lt", lang: "lt",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Saugoti", "ok": "Saugoti",
"cancel": "Atšaukti", "cancel": "Atšaukti",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Spustelėkite norėdami keisti užpildo spalvą, perėjimo spustelėkite pakeisti insultas spalva", "palette_info": "Spustelėkite norėdami keisti užpildo spalvą, perėjimo spustelėkite pakeisti insultas spalva",
"zoom_level": "Keisti mastelį", "zoom_level": "Keisti mastelį",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Keisti užpildyti spalvos", "fill_color": "Keisti užpildyti spalvos",
"stroke_color": "Keisti insultas spalva", "stroke_color": "Keisti insultas spalva",
"stroke_style": "Keisti insultas brūkšnys stilius", "stroke_style": "Keisti insultas brūkšnys stilius",
"stroke_width": "Keisti insultas plotis", "stroke_width": "Keisti insultas plotis",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Keisti sukimosi kampas", "angle": "Keisti sukimosi kampas",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Pakeisti pasirinkto elemento neskaidrumo", "opacity": "Pakeisti pasirinkto elemento neskaidrumo",
"circle_cx": "Keisti ratas&#39;s CX koordinuoti", "circle_cx": "Keisti ratas&#39;s CX koordinuoti",
"circle_cy": "Keisti ratas&#39;s CY koordinuoti", "circle_cy": "Keisti ratas&#39;s CY koordinuoti",
"circle_r": "Keisti savo apskritimo spindulys", "circle_r": "Keisti savo apskritimo spindulys",
"ellipse_cx": "Keisti elipse&#39;s CX koordinuoti", "ellipse_cx": "Keisti elipse&#39;s CX koordinuoti",
"ellipse_cy": "Keisti elipse&#39;s CY koordinuoti", "ellipse_cy": "Keisti elipse&#39;s CY koordinuoti",
"ellipse_rx": "Keisti elipsė &quot;X spindulys", "ellipse_rx": "Keisti elipsė &quot;X spindulys",
"ellipse_ry": "Keisti elipse Y spindulys", "ellipse_ry": "Keisti elipse Y spindulys",
"line_x1": "Keisti linijos nuo koordinačių x", "line_x1": "Keisti linijos nuo koordinačių x",
"line_x2": "Keisti linijos baigėsi x koordinuoti", "line_x2": "Keisti linijos baigėsi x koordinuoti",
"line_y1": "Keisti linijos pradžios y koordinačių", "line_y1": "Keisti linijos pradžios y koordinačių",
"line_y2": "Keisti linijos baigėsi y koordinačių", "line_y2": "Keisti linijos baigėsi y koordinačių",
"rect_height": "Keisti stačiakampio aukščio", "rect_height": "Keisti stačiakampio aukščio",
"rect_width": "Pakeisti stačiakampio plotis", "rect_width": "Pakeisti stačiakampio plotis",
"corner_radius": "Keisti stačiakampis skyrelį Spindulys", "corner_radius": "Keisti stačiakampis skyrelį Spindulys",
"image_width": "Keisti paveikslėlio plotis", "image_width": "Keisti paveikslėlio plotis",
"image_height": "Keisti vaizdo aukštis", "image_height": "Keisti vaizdo aukštis",
"image_url": "Pakeisti URL", "image_url": "Pakeisti URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Keisti teksto turinys", "text_contents": "Keisti teksto turinys",
"font_family": "Pakeistišriftą Šeima", "font_family": "Pakeistišriftą Šeima",
"font_size": "Change font size", "font_size": "Change font size",
"bold": "Pusjuodis", "bold": "Pusjuodis",
"italic": "Kursyvas" "italic": "Kursyvas"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Pakeisti fono spalvą / drumstumas", "bkgnd_color_opac": "Pakeisti fono spalvą / drumstumas",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Talpinti turinys", "fitToContent": "Talpinti turinys",
"fit_to_all": "Talpinti All content", "fit_to_all": "Talpinti All content",
"fit_to_canvas": "Talpinti drobė", "fit_to_canvas": "Talpinti drobė",
"fit_to_layer_content": "Talpinti sluoksnis turinio", "fit_to_layer_content": "Talpinti sluoksnis turinio",
"fit_to_sel": "Talpinti atrankos", "fit_to_sel": "Talpinti atrankos",
"align_relative_to": "Derinti palyginti ...", "align_relative_to": "Derinti palyginti ...",
"relativeTo": "palyginti:", "relativeTo": "palyginti:",
"page": "puslapis", "page": "puslapis",
"largest_object": "didžiausias objektas", "largest_object": "didžiausias objektas",
"selected_objects": "išrinktas objektai", "selected_objects": "išrinktas objektai",
"smallest_object": "mažiausias objektą", "smallest_object": "mažiausias objektą",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Atidaryti atvaizdą", "open_doc": "Atidaryti atvaizdą",
"export_img": "Export", "export_img": "Export",
"save_doc": "Išsaugoti nuotrauką", "save_doc": "Išsaugoti nuotrauką",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Lygiuoti apačioje", "align_bottom": "Lygiuoti apačioje",
"align_center": "Lygiuoti", "align_center": "Lygiuoti",
"align_left": "Lygiuoti kairėje", "align_left": "Lygiuoti kairėje",
"align_middle": "Suderinti Vidurio", "align_middle": "Suderinti Vidurio",
"align_right": "Lygiuoti dešinėje", "align_right": "Lygiuoti dešinėje",
"align_top": "Lygiuoti viršų", "align_top": "Lygiuoti viršų",
"mode_select": "Įrankis", "mode_select": "Įrankis",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free Hand stačiakampis", "mode_fhrect": "Free Hand stačiakampis",
"mode_ellipse": "Elipse", "mode_ellipse": "Elipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free Hand Elipsė", "mode_fhellipse": "Free Hand Elipsė",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Tekstas Tool", "mode_text": "Tekstas Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Įrankį", "mode_zoom": "Zoom Įrankį",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Atšaukti", "undo": "Atšaukti",
"redo": "Atstatyti", "redo": "Atstatyti",
"tool_source": "Taisyti Šaltinis", "tool_source": "Taisyti Šaltinis",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Elementų grupės", "group_elements": "Elementų grupės",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Išgrupuoti elementai", "ungroup": "Išgrupuoti elementai",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Perkelti į apačią", "move_bottom": "Perkelti į apačią",
"move_top": "Perkelti į viršų", "move_top": "Perkelti į viršų",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Saugoti", "source_save": "Saugoti",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Ištrinti Layer", "del": "Ištrinti Layer",
"move_down": "Perkelti sluoksnį Žemyn", "move_down": "Perkelti sluoksnį Žemyn",
"new": "New Layer", "new": "New Layer",
"rename": "Pervadinti sluoksnį", "rename": "Pervadinti sluoksnį",
"move_up": "Perkelti sluoksnį Up", "move_up": "Perkelti sluoksnį Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Pasirinkite iš anksto:", "select_predefined": "Pasirinkite iš anksto:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "lv", lang: "lv",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Glābt", "ok": "Glābt",
"cancel": "Atcelt", "cancel": "Atcelt",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Noklikšķiniet, lai mainītu aizpildījuma krāsu, shift-click to mainīt stroke krāsa", "palette_info": "Noklikšķiniet, lai mainītu aizpildījuma krāsu, shift-click to mainīt stroke krāsa",
"zoom_level": "Pārmaiņu mērogu", "zoom_level": "Pārmaiņu mērogu",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Change aizpildījuma krāsu", "fill_color": "Change aizpildījuma krāsu",
"stroke_color": "Change stroke krāsa", "stroke_color": "Change stroke krāsa",
"stroke_style": "Maina stroke domuzīme stils", "stroke_style": "Maina stroke domuzīme stils",
"stroke_width": "Change stroke platums", "stroke_width": "Change stroke platums",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Mainīt griešanās leņķis", "angle": "Mainīt griešanās leņķis",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Mainīt izvēlēto objektu necaurredzamība", "opacity": "Mainīt izvēlēto objektu necaurredzamība",
"circle_cx": "Maina aplis&#39;s CX koordinēt", "circle_cx": "Maina aplis&#39;s CX koordinēt",
"circle_cy": "Pārmaiņu loks ir cy koordinēt", "circle_cy": "Pārmaiņu loks ir cy koordinēt",
"circle_r": "Pārmaiņu loks ir rādiuss", "circle_r": "Pārmaiņu loks ir rādiuss",
"ellipse_cx": "Mainīt elipses&#39;s CX koordinēt", "ellipse_cx": "Mainīt elipses&#39;s CX koordinēt",
"ellipse_cy": "Mainīt elipses&#39;s cy koordinēt", "ellipse_cy": "Mainīt elipses&#39;s cy koordinēt",
"ellipse_rx": "Mainīt elipses&#39;s x rādiuss", "ellipse_rx": "Mainīt elipses&#39;s x rādiuss",
"ellipse_ry": "Mainīt elipses&#39;s y rādiuss", "ellipse_ry": "Mainīt elipses&#39;s y rādiuss",
"line_x1": "Mainīt līnijas sākas x koordinēt", "line_x1": "Mainīt līnijas sākas x koordinēt",
"line_x2": "Mainīt līnijas beigu x koordinēt", "line_x2": "Mainīt līnijas beigu x koordinēt",
"line_y1": "Mainīt līnijas sākas y koordinātu", "line_y1": "Mainīt līnijas sākas y koordinātu",
"line_y2": "Mainīt līnijas beigu y koordinātu", "line_y2": "Mainīt līnijas beigu y koordinātu",
"rect_height": "Change Taisnstūra augstums", "rect_height": "Change Taisnstūra augstums",
"rect_width": "Change taisnstūra platums", "rect_width": "Change taisnstūra platums",
"corner_radius": "Maina Taisnstūris Corner Rādiuss", "corner_radius": "Maina Taisnstūris Corner Rādiuss",
"image_width": "Mainīt attēla platumu", "image_width": "Mainīt attēla platumu",
"image_height": "Mainīt attēla augstums", "image_height": "Mainīt attēla augstums",
"image_url": "Change URL", "image_url": "Change URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Mainītu teksta saturs", "text_contents": "Mainītu teksta saturs",
"font_family": "Mainīt fonta Family", "font_family": "Mainīt fonta Family",
"font_size": "Mainīt fonta izmēru", "font_size": "Mainīt fonta izmēru",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Kursīvs" "italic": "Kursīvs"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Change background color / necaurredzamība", "bkgnd_color_opac": "Change background color / necaurredzamība",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Fit uz visu saturu", "fit_to_all": "Fit uz visu saturu",
"fit_to_canvas": "Ievietot audekls", "fit_to_canvas": "Ievietot audekls",
"fit_to_layer_content": "Ievietot slānis saturs", "fit_to_layer_content": "Ievietot slānis saturs",
"fit_to_sel": "Fit atlases", "fit_to_sel": "Fit atlases",
"align_relative_to": "Līdzināt, salīdzinot ar ...", "align_relative_to": "Līdzināt, salīdzinot ar ...",
"relativeTo": "salīdzinājumā ar:", "relativeTo": "salīdzinājumā ar:",
"page": "lapa", "page": "lapa",
"largest_object": "lielākais objekts", "largest_object": "lielākais objekts",
"selected_objects": "ievēlēts objekti", "selected_objects": "ievēlēts objekti",
"smallest_object": "mazākais objekts", "smallest_object": "mazākais objekts",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Open SVG", "open_doc": "Open SVG",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Līdzināt Bottom", "align_bottom": "Līdzināt Bottom",
"align_center": "Līdzināt uz centru", "align_center": "Līdzināt uz centru",
"align_left": "Līdzināt pa kreisi", "align_left": "Līdzināt pa kreisi",
"align_middle": "Līdzināt Middle", "align_middle": "Līdzināt Middle",
"align_right": "Līdzināt pa labi", "align_right": "Līdzināt pa labi",
"align_top": "Līdzināt Top", "align_top": "Līdzināt Top",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Taisnstūris", "mode_fhrect": "Free-Hand Taisnstūris",
"mode_ellipse": "Elipse", "mode_ellipse": "Elipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path", "mode_path": "Path",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Atpogāt", "undo": "Atpogāt",
"redo": "Redo", "redo": "Redo",
"tool_source": "Rediģēt Source", "tool_source": "Rediģēt Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Grupa Elements", "group_elements": "Grupa Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Atgrupēt Elements", "ungroup": "Atgrupēt Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Pārvietot uz leju", "move_bottom": "Pārvietot uz leju",
"move_top": "Pārvietot uz augšu", "move_top": "Pārvietot uz augšu",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Glābt", "source_save": "Glābt",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Dzēst Layer", "del": "Dzēst Layer",
"move_down": "Pārvietot slāni uz leju", "move_down": "Pārvietot slāni uz leju",
"new": "New Layer", "new": "New Layer",
"rename": "Pārdēvēt Layer", "rename": "Pārdēvēt Layer",
"move_up": "Pārvietot slāni uz augšu", "move_up": "Pārvietot slāni uz augšu",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Izvēlieties iepriekš:", "select_predefined": "Izvēlieties iepriekš:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "mk", lang: "mk",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Зачувува", "ok": "Зачувува",
"cancel": "Откажи", "cancel": "Откажи",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Кликни за да внесете промени бојата, промена клик да се промени бојата удар", "palette_info": "Кликни за да внесете промени бојата, промена клик да се промени бојата удар",
"zoom_level": "Промена зум ниво", "zoom_level": "Промена зум ниво",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Измени пополнете боја", "fill_color": "Измени пополнете боја",
"stroke_color": "Промена боја на мозочен удар", "stroke_color": "Промена боја на мозочен удар",
"stroke_style": "Промена удар цртичка стил", "stroke_style": "Промена удар цртичка стил",
"stroke_width": "Промена удар Ширина", "stroke_width": "Промена удар Ширина",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Change ротација агол", "angle": "Change ротација агол",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Промена избрани ставка непроѕирноста", "opacity": "Промена избрани ставка непроѕирноста",
"circle_cx": "Промена круг на cx координира", "circle_cx": "Промена круг на cx координира",
"circle_cy": "Промена круг&#39;s cy координираат", "circle_cy": "Промена круг&#39;s cy координираат",
"circle_r": "Промена на круг со радиус", "circle_r": "Промена на круг со радиус",
"ellipse_cx": "Промена елипса&#39;s cx координираат", "ellipse_cx": "Промена елипса&#39;s cx координираат",
"ellipse_cy": "Промена на елипса cy координира", "ellipse_cy": "Промена на елипса cy координира",
"ellipse_rx": "Промена на елипса x радиус", "ellipse_rx": "Промена на елипса x радиус",
"ellipse_ry": "Промена на елипса у радиус", "ellipse_ry": "Промена на елипса у радиус",
"line_x1": "Промена линија почетна x координира", "line_x1": "Промена линија почетна x координира",
"line_x2": "Промена линија завршува x координира", "line_x2": "Промена линија завршува x координира",
"line_y1": "Промена линија координираат почетна y", "line_y1": "Промена линија координираат почетна y",
"line_y2": "Промена линија завршува y координира", "line_y2": "Промена линија завршува y координира",
"rect_height": "Промена правоаголник височина", "rect_height": "Промена правоаголник височина",
"rect_width": "Промена правоаголник Ширина", "rect_width": "Промена правоаголник Ширина",
"corner_radius": "Промена правоаголник Corner Radius", "corner_radius": "Промена правоаголник Corner Radius",
"image_width": "Промена Ширина на сликата", "image_width": "Промена Ширина на сликата",
"image_height": "Промена на слика височина", "image_height": "Промена на слика височина",
"image_url": "Промена URL", "image_url": "Промена URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Промена текст содржина", "text_contents": "Промена текст содржина",
"font_family": "Смени фонт Фамилија", "font_family": "Смени фонт Фамилија",
"font_size": "Изменифонт Големина", "font_size": "Изменифонт Големина",
"bold": "Задебелен текст", "bold": "Задебелен текст",
"italic": "Italic текст" "italic": "Italic текст"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Смени позадина / непроѕирноста", "bkgnd_color_opac": "Смени позадина / непроѕирноста",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Способен да Содржина", "fitToContent": "Способен да Содржина",
"fit_to_all": "Способен да сите содржина", "fit_to_all": "Способен да сите содржина",
"fit_to_canvas": "Побиране да платно", "fit_to_canvas": "Побиране да платно",
"fit_to_layer_content": "Способен да слој содржина", "fit_to_layer_content": "Способен да слој содржина",
"fit_to_sel": "Способен да селекција", "fit_to_sel": "Способен да селекција",
"align_relative_to": "Порамни во поглед на ...", "align_relative_to": "Порамни во поглед на ...",
"relativeTo": "во поглед на:", "relativeTo": "во поглед на:",
"page": "страница", "page": "страница",
"largest_object": "најголемиот објект", "largest_object": "најголемиот објект",
"selected_objects": "избран објекти", "selected_objects": "избран објекти",
"smallest_object": "најмалата објект", "smallest_object": "најмалата објект",
"new_doc": "Нови слики", "new_doc": "Нови слики",
"open_doc": "Отвори слика", "open_doc": "Отвори слика",
"export_img": "Export", "export_img": "Export",
"save_doc": "Зачувај слика", "save_doc": "Зачувај слика",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Центрирано", "align_center": "Центрирано",
"align_left": "Порамни лево Порамни", "align_left": "Порамни лево Порамни",
"align_middle": "Израмни Среден", "align_middle": "Израмни Среден",
"align_right": "Порамни десно", "align_right": "Порамни десно",
"align_top": "Израмни почетокот", "align_top": "Израмни почетокот",
"mode_select": "Изберете ја алатката", "mode_select": "Изберете ја алатката",
"mode_fhpath": "Алатка за молив", "mode_fhpath": "Алатка за молив",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Правоаголник слободна рака", "mode_fhrect": "Правоаголник слободна рака",
"mode_ellipse": "Елипса", "mode_ellipse": "Елипса",
"mode_circle": "Круг", "mode_circle": "Круг",
"mode_fhellipse": "Free-Hand Елипса", "mode_fhellipse": "Free-Hand Елипса",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Алатка за текст", "mode_text": "Алатка за текст",
"mode_image": "Алатка за сликата", "mode_image": "Алатка за сликата",
"mode_zoom": "Алатка за зумирање", "mode_zoom": "Алатка за зумирање",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Врати", "undo": "Врати",
"redo": "Повтори", "redo": "Повтори",
"tool_source": "Уреди Извор", "tool_source": "Уреди Извор",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Група на елементи", "group_elements": "Група на елементи",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Елементи", "ungroup": "Ungroup Елементи",
"docprops": "Својства на документот", "docprops": "Својства на документот",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to bottom", "move_bottom": "Move to bottom",
"move_top": "Поместување на почетокот", "move_top": "Поместување на почетокот",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Зачувува", "source_save": "Зачувува",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Избриши Слој", "del": "Избриши Слој",
"move_down": "Премести слој долу", "move_down": "Премести слој долу",
"new": "Нов слој", "new": "Нов слој",
"rename": "Преименувај слој", "rename": "Преименувај слој",
"move_up": "Премести слој горе", "move_up": "Премести слој горе",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Изберете предефинирани:", "select_predefined": "Изберете предефинирани:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "ms", lang: "ms",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Simpan", "ok": "Simpan",
"cancel": "Batal", "cancel": "Batal",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Klik untuk menukar warna mengisi, shift-klik untuk menukar warna stroke", "palette_info": "Klik untuk menukar warna mengisi, shift-klik untuk menukar warna stroke",
"zoom_level": "Mengubah peringkat pembesaran", "zoom_level": "Mengubah peringkat pembesaran",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Tukar Warna mengisi", "fill_color": "Tukar Warna mengisi",
"stroke_color": "Tukar Warna stroke", "stroke_color": "Tukar Warna stroke",
"stroke_style": "Tukar gaya dash stroke", "stroke_style": "Tukar gaya dash stroke",
"stroke_width": "Tukar stroke width", "stroke_width": "Tukar stroke width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Namakan sudut putaran", "angle": "Namakan sudut putaran",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Mengubah item yang dipilih keburaman", "opacity": "Mengubah item yang dipilih keburaman",
"circle_cx": "Mengubah koordinat bulatan cx", "circle_cx": "Mengubah koordinat bulatan cx",
"circle_cy": "Mengubah koordinat cy bulatan", "circle_cy": "Mengubah koordinat cy bulatan",
"circle_r": "Tukar jari-jari lingkaran", "circle_r": "Tukar jari-jari lingkaran",
"ellipse_cx": "Tukar elips&#39;s cx koordinat", "ellipse_cx": "Tukar elips&#39;s cx koordinat",
"ellipse_cy": "Tukar elips&#39;s cy koordinat", "ellipse_cy": "Tukar elips&#39;s cy koordinat",
"ellipse_rx": "Tukar elips&#39;s x jari-jari", "ellipse_rx": "Tukar elips&#39;s x jari-jari",
"ellipse_ry": "Tukar elips&#39;s y jari-jari", "ellipse_ry": "Tukar elips&#39;s y jari-jari",
"line_x1": "Ubah baris mulai x koordinat", "line_x1": "Ubah baris mulai x koordinat",
"line_x2": "Ubah baris&#39;s Berakhir x koordinat", "line_x2": "Ubah baris&#39;s Berakhir x koordinat",
"line_y1": "Ubah baris mulai y koordinat", "line_y1": "Ubah baris mulai y koordinat",
"line_y2": "Ubah baris di tiap akhir y koordinat", "line_y2": "Ubah baris di tiap akhir y koordinat",
"rect_height": "Perubahan quality persegi panjang", "rect_height": "Perubahan quality persegi panjang",
"rect_width": "Tukar persegi panjang lebar", "rect_width": "Tukar persegi panjang lebar",
"corner_radius": "Tukar Corner Rectangle Radius", "corner_radius": "Tukar Corner Rectangle Radius",
"image_width": "Tukar Lebar imej", "image_width": "Tukar Lebar imej",
"image_height": "Tinggi gambar Kaca", "image_height": "Tinggi gambar Kaca",
"image_url": "Tukar URL", "image_url": "Tukar URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Tukar isi teks", "text_contents": "Tukar isi teks",
"font_family": "Tukar Font Keluarga", "font_family": "Tukar Font Keluarga",
"font_size": "Ubah Saiz Font", "font_size": "Ubah Saiz Font",
"bold": "Bold Teks", "bold": "Bold Teks",
"italic": "Italic Teks" "italic": "Italic Teks"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Mengubah warna latar belakang / keburaman", "bkgnd_color_opac": "Mengubah warna latar belakang / keburaman",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Cocok untuk semua kandungan", "fit_to_all": "Cocok untuk semua kandungan",
"fit_to_canvas": "Muat kanvas", "fit_to_canvas": "Muat kanvas",
"fit_to_layer_content": "Muat kandungan lapisan", "fit_to_layer_content": "Muat kandungan lapisan",
"fit_to_sel": "Fit seleksi", "fit_to_sel": "Fit seleksi",
"align_relative_to": "Rata relatif ...", "align_relative_to": "Rata relatif ...",
"relativeTo": "relatif:", "relativeTo": "relatif:",
"page": "Laman", "page": "Laman",
"largest_object": "objek terbesar", "largest_object": "objek terbesar",
"selected_objects": "objek terpilih", "selected_objects": "objek terpilih",
"smallest_object": "objek terkecil", "smallest_object": "objek terkecil",
"new_doc": "Imej Baru", "new_doc": "Imej Baru",
"open_doc": "Membuka Image", "open_doc": "Membuka Image",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Rata Bottom", "align_bottom": "Rata Bottom",
"align_center": "Rata Tengah", "align_center": "Rata Tengah",
"align_left": "Rata Kiri", "align_left": "Rata Kiri",
"align_middle": "Rata Tengah", "align_middle": "Rata Tengah",
"align_right": "Rata Kanan", "align_right": "Rata Kanan",
"align_top": "Rata Popular", "align_top": "Rata Popular",
"mode_select": "Pilih Tool", "mode_select": "Pilih Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Persegi Panjang", "mode_fhrect": "Free-Hand Persegi Panjang",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Lingkaran", "mode_circle": "Lingkaran",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Teks Tool", "mode_text": "Teks Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Undo", "undo": "Undo",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Kelompok Elemen", "group_elements": "Kelompok Elemen",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elemen", "ungroup": "Ungroup Elemen",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Pindah ke Bawah", "move_bottom": "Pindah ke Bawah",
"move_top": "Pindah ke Atas", "move_top": "Pindah ke Atas",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Simpan", "source_save": "Simpan",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Padam Layer", "del": "Padam Layer",
"move_down": "Pindah Layer Bawah", "move_down": "Pindah Layer Bawah",
"new": "New Layer", "new": "New Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Pindah Layer Up", "move_up": "Pindah Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Pilih standard:", "select_predefined": "Pilih standard:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "mt", lang: "mt",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Save", "ok": "Save",
"cancel": "Ikkanċella", "cancel": "Ikkanċella",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Ikklikkja biex timla l-bidla fil-kulur, ikklikkja-bidla għall-bidla color stroke", "palette_info": "Ikklikkja biex timla l-bidla fil-kulur, ikklikkja-bidla għall-bidla color stroke",
"zoom_level": "Bidla zoom livell", "zoom_level": "Bidla zoom livell",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Bidla imla color", "fill_color": "Bidla imla color",
"stroke_color": "Color stroke Bidla", "stroke_color": "Color stroke Bidla",
"stroke_style": "Bidla stroke dash stil", "stroke_style": "Bidla stroke dash stil",
"stroke_width": "Wisa &#39;puplesija Bidla", "stroke_width": "Wisa &#39;puplesija Bidla",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Angolu ta &#39;rotazzjoni Bidla", "angle": "Angolu ta &#39;rotazzjoni Bidla",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Bidla magħżula opaċità partita", "opacity": "Bidla magħżula opaċità partita",
"circle_cx": "CX ċirku Tibdil jikkoordinaw", "circle_cx": "CX ċirku Tibdil jikkoordinaw",
"circle_cy": "Ċirku Tibdil cy jikkoordinaw", "circle_cy": "Ċirku Tibdil cy jikkoordinaw",
"circle_r": "Raġġ ta &#39;ċirku tal-Bidla", "circle_r": "Raġġ ta &#39;ċirku tal-Bidla",
"ellipse_cx": "Bidla ellissi&#39;s CX jikkoordinaw", "ellipse_cx": "Bidla ellissi&#39;s CX jikkoordinaw",
"ellipse_cy": "Ellissi Tibdil cy jikkoordinaw", "ellipse_cy": "Ellissi Tibdil cy jikkoordinaw",
"ellipse_rx": "Raġġ x ellissi Tibdil", "ellipse_rx": "Raġġ x ellissi Tibdil",
"ellipse_ry": "Raġġ y ellissi Tibdil", "ellipse_ry": "Raġġ y ellissi Tibdil",
"line_x1": "Bidla fil-linja tal-bidu tikkoordina x", "line_x1": "Bidla fil-linja tal-bidu tikkoordina x",
"line_x2": "Linja tal-Bidla li jispiċċa x jikkoordinaw", "line_x2": "Linja tal-Bidla li jispiċċa x jikkoordinaw",
"line_y1": "Bidla fil-linja tal-bidu y jikkoordinaw", "line_y1": "Bidla fil-linja tal-bidu y jikkoordinaw",
"line_y2": "Linja Tibdil jispiċċa y jikkoordinaw", "line_y2": "Linja Tibdil jispiċċa y jikkoordinaw",
"rect_height": "Għoli rettangolu Bidla", "rect_height": "Għoli rettangolu Bidla",
"rect_width": "Wisa &#39;rettangolu Bidla", "rect_width": "Wisa &#39;rettangolu Bidla",
"corner_radius": "Bidla Rectangle Corner Radius", "corner_radius": "Bidla Rectangle Corner Radius",
"image_width": "Wisa image Bidla", "image_width": "Wisa image Bidla",
"image_height": "Għoli image Bidla", "image_height": "Għoli image Bidla",
"image_url": "Bidla URL", "image_url": "Bidla URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Test kontenut Bidla", "text_contents": "Test kontenut Bidla",
"font_family": "Bidla Font Familja", "font_family": "Bidla Font Familja",
"font_size": "Change font size", "font_size": "Change font size",
"bold": "Bold Test", "bold": "Bold Test",
"italic": "Test korsiv" "italic": "Test korsiv"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Bidla fil-kulur fl-isfond / opaċità", "bkgnd_color_opac": "Bidla fil-kulur fl-isfond / opaċità",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit għall-kontenut", "fitToContent": "Fit għall-kontenut",
"fit_to_all": "Tajbin għall-kontenut", "fit_to_all": "Tajbin għall-kontenut",
"fit_to_canvas": "Xieraq li kanvas", "fit_to_canvas": "Xieraq li kanvas",
"fit_to_layer_content": "Fit-kontenut ta &#39;saff għal", "fit_to_layer_content": "Fit-kontenut ta &#39;saff għal",
"fit_to_sel": "Fit-għażla", "fit_to_sel": "Fit-għażla",
"align_relative_to": "Jallinjaw relattiv għall - ...", "align_relative_to": "Jallinjaw relattiv għall - ...",
"relativeTo": "relattiv għall -:", "relativeTo": "relattiv għall -:",
"page": "paġna", "page": "paġna",
"largest_object": "akbar oġġett", "largest_object": "akbar oġġett",
"selected_objects": "oġġetti elett", "selected_objects": "oġġetti elett",
"smallest_object": "iżgħar oġġett", "smallest_object": "iżgħar oġġett",
"new_doc": "Image New", "new_doc": "Image New",
"open_doc": "Open SVG", "open_doc": "Open SVG",
"export_img": "Export", "export_img": "Export",
"save_doc": "Image Save", "save_doc": "Image Save",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Tallinja Bottom", "align_bottom": "Tallinja Bottom",
"align_center": "Tallinja Center", "align_center": "Tallinja Center",
"align_left": "Tallinja Left", "align_left": "Tallinja Left",
"align_middle": "Tallinja Nofsani", "align_middle": "Tallinja Nofsani",
"align_right": "Tallinja Dritt", "align_right": "Tallinja Dritt",
"align_top": "Tallinja Top", "align_top": "Tallinja Top",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Lapes Tool", "mode_fhpath": "Lapes Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free Hand-Rectangle", "mode_fhrect": "Free Hand-Rectangle",
"mode_ellipse": "Ellissi", "mode_ellipse": "Ellissi",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free Hand-ellissi", "mode_fhellipse": "Free Hand-ellissi",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Jneħħu", "undo": "Jneħħu",
"redo": "Jerġa &#39;jagħmel", "redo": "Jerġa &#39;jagħmel",
"tool_source": "Source Edit", "tool_source": "Source Edit",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Grupp Elements", "group_elements": "Grupp Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Dokument Properties", "docprops": "Dokument Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Save", "source_save": "Save",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Ħassar Layer", "del": "Ħassar Layer",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"new": "New Layer", "new": "New Layer",
"rename": "Semmi mill-ġdid Layer", "rename": "Semmi mill-ġdid Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Select predefiniti:", "select_predefined": "Select predefiniti:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "nl", lang: "nl",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Ok", "ok": "Ok",
"cancel": "Annuleren", "cancel": "Annuleren",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "omlaag", "key_down": "omlaag",
"key_up": "omhoog", "key_up": "omhoog",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Mogelijk gemaakt door" "powered_by": "Mogelijk gemaakt door"
}, },
ui: { ui: {
"toggle_stroke_tools": "Toon/verberg meer lijn gereedschap", "toggle_stroke_tools": "Toon/verberg meer lijn gereedschap",
"palette_info": "Klik om de vul kleur te veranderen, shift-klik om de lijn kleur te veranderen", "palette_info": "Klik om de vul kleur te veranderen, shift-klik om de lijn kleur te veranderen",
"zoom_level": "In-/uitzoomen", "zoom_level": "In-/uitzoomen",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identificeer het element", "id": "Identificeer het element",
"fill_color": "Verander vul kleur", "fill_color": "Verander vul kleur",
"stroke_color": "Verander lijn kleur", "stroke_color": "Verander lijn kleur",
"stroke_style": "Verander lijn stijl", "stroke_style": "Verander lijn stijl",
"stroke_width": "Verander lijn breedte", "stroke_width": "Verander lijn breedte",
"pos_x": "Verander X coordinaat", "pos_x": "Verander X coordinaat",
"pos_y": "Verander Y coordinaat", "pos_y": "Verander Y coordinaat",
"linecap_butt": "Lijneinde: Geen", "linecap_butt": "Lijneinde: Geen",
"linecap_round": "Lijneinde: Rond", "linecap_round": "Lijneinde: Rond",
"linecap_square": "Lijneinde: Vierkant", "linecap_square": "Lijneinde: Vierkant",
"linejoin_bevel": "Lijnverbinding: Afgestompt", "linejoin_bevel": "Lijnverbinding: Afgestompt",
"linejoin_miter": "Lijnverbinding: Hoek", "linejoin_miter": "Lijnverbinding: Hoek",
"linejoin_round": "Lijnverbinding: Rond", "linejoin_round": "Lijnverbinding: Rond",
"angle": "Draai", "angle": "Draai",
"blur": "Verander Gaussische vervaging waarde", "blur": "Verander Gaussische vervaging waarde",
"opacity": "Verander opaciteit geselecteerde item", "opacity": "Verander opaciteit geselecteerde item",
"circle_cx": "Verander het X coordinaat van het cirkel middelpunt", "circle_cx": "Verander het X coordinaat van het cirkel middelpunt",
"circle_cy": "Verander het Y coordinaat van het cirkel middelpunt", "circle_cy": "Verander het Y coordinaat van het cirkel middelpunt",
"circle_r": "Verander de cirkel radius", "circle_r": "Verander de cirkel radius",
"ellipse_cx": "Verander het X coordinaat van het ellips middelpunt", "ellipse_cx": "Verander het X coordinaat van het ellips middelpunt",
"ellipse_cy": "Verander het Y coordinaat van het ellips middelpunt", "ellipse_cy": "Verander het Y coordinaat van het ellips middelpunt",
"ellipse_rx": "Verander ellips X radius", "ellipse_rx": "Verander ellips X radius",
"ellipse_ry": "Verander ellips Y radius", "ellipse_ry": "Verander ellips Y radius",
"line_x1": "Verander start X coordinaat van de lijn", "line_x1": "Verander start X coordinaat van de lijn",
"line_x2": "Verander eind X coordinaat van de lijn", "line_x2": "Verander eind X coordinaat van de lijn",
"line_y1": "Verander start Y coordinaat van de lijn", "line_y1": "Verander start Y coordinaat van de lijn",
"line_y2": "Verander eind Y coordinaat van de lijn", "line_y2": "Verander eind Y coordinaat van de lijn",
"rect_height": "Verander hoogte rechthoek", "rect_height": "Verander hoogte rechthoek",
"rect_width": "Verander breedte rechthoek", "rect_width": "Verander breedte rechthoek",
"corner_radius": "Verander hoekradius rechthoek", "corner_radius": "Verander hoekradius rechthoek",
"image_width": "Verander breedte afbeelding", "image_width": "Verander breedte afbeelding",
"image_height": "Verander hoogte afbeelding", "image_height": "Verander hoogte afbeelding",
"image_url": "Verander URL", "image_url": "Verander URL",
"node_x": "Verander X coordinaat knooppunt", "node_x": "Verander X coordinaat knooppunt",
"node_y": "Verander Y coordinaat knooppunt", "node_y": "Verander Y coordinaat knooppunt",
"seg_type": "Verander segment type", "seg_type": "Verander segment type",
"straight_segments": "Recht", "straight_segments": "Recht",
"curve_segments": "Gebogen", "curve_segments": "Gebogen",
"text_contents": "Wijzig tekst", "text_contents": "Wijzig tekst",
"font_family": "Verander lettertype", "font_family": "Verander lettertype",
"font_size": "Verander lettertype grootte", "font_size": "Verander lettertype grootte",
"bold": "Vet", "bold": "Vet",
"italic": "Cursief" "italic": "Cursief"
}, },
tools: { tools: {
"main_menu": "Hoofdmenu", "main_menu": "Hoofdmenu",
"bkgnd_color_opac": "Verander achtergrond kleur/doorzichtigheid", "bkgnd_color_opac": "Verander achtergrond kleur/doorzichtigheid",
"connector_no_arrow": "Geen pijl", "connector_no_arrow": "Geen pijl",
"fitToContent": "Pas om inhoud", "fitToContent": "Pas om inhoud",
"fit_to_all": "Pas om alle inhoud", "fit_to_all": "Pas om alle inhoud",
"fit_to_canvas": "Pas om canvas", "fit_to_canvas": "Pas om canvas",
"fit_to_layer_content": "Pas om laag inhoud", "fit_to_layer_content": "Pas om laag inhoud",
"fit_to_sel": "Pas om selectie", "fit_to_sel": "Pas om selectie",
"align_relative_to": "Uitlijnen relatief ten opzichte van ...", "align_relative_to": "Uitlijnen relatief ten opzichte van ...",
"relativeTo": "Relatief ten opzichte van:", "relativeTo": "Relatief ten opzichte van:",
"page": "Pagina", "page": "Pagina",
"largest_object": "Grootste object", "largest_object": "Grootste object",
"selected_objects": "Geselecteerde objecten", "selected_objects": "Geselecteerde objecten",
"smallest_object": "Kleinste object", "smallest_object": "Kleinste object",
"new_doc": "Nieuwe afbeelding", "new_doc": "Nieuwe afbeelding",
"open_doc": "Open afbeelding", "open_doc": "Open afbeelding",
"export_img": "Export", "export_img": "Export",
"save_doc": "Afbeelding opslaan", "save_doc": "Afbeelding opslaan",
"import_doc": "Importeer SVG", "import_doc": "Importeer SVG",
"align_to_page": "Lijn element uit relatief ten opzichte van de pagina", "align_to_page": "Lijn element uit relatief ten opzichte van de pagina",
"align_bottom": "Onder uitlijnen", "align_bottom": "Onder uitlijnen",
"align_center": "Centreren", "align_center": "Centreren",
"align_left": "Links uitlijnen", "align_left": "Links uitlijnen",
"align_middle": "Midden uitlijnen", "align_middle": "Midden uitlijnen",
"align_right": "Rechts uitlijnen", "align_right": "Rechts uitlijnen",
"align_top": "Boven uitlijnen", "align_top": "Boven uitlijnen",
"mode_select": "Selecteer", "mode_select": "Selecteer",
"mode_fhpath": "Potlood", "mode_fhpath": "Potlood",
"mode_line": "Lijn", "mode_line": "Lijn",
"mode_connect": "Verbind twee objecten", "mode_connect": "Verbind twee objecten",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Vrije stijl rechthoek", "mode_fhrect": "Vrije stijl rechthoek",
"mode_ellipse": "Ellips", "mode_ellipse": "Ellips",
"mode_circle": "Cirkel", "mode_circle": "Cirkel",
"mode_fhellipse": "Vrije stijl ellips", "mode_fhellipse": "Vrije stijl ellips",
"mode_path": "Pad", "mode_path": "Pad",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Tekst", "mode_text": "Tekst",
"mode_image": "Afbeelding", "mode_image": "Afbeelding",
"mode_zoom": "Zoom", "mode_zoom": "Zoom",
"mode_eyedropper": "Kleuren kopieer gereedschap", "mode_eyedropper": "Kleuren kopieer gereedschap",
"no_embed": "Let op: Dit plaatje kan niet worden geintegreerd (embeded). Het hangt af van dit pad om te worden afgebeeld.", "no_embed": "Let op: Dit plaatje kan niet worden geintegreerd (embeded). Het hangt af van dit pad om te worden afgebeeld.",
"undo": "Ongedaan maken", "undo": "Ongedaan maken",
"redo": "Opnieuw doen", "redo": "Opnieuw doen",
"tool_source": "Bewerk bron", "tool_source": "Bewerk bron",
"wireframe_mode": "Draadmodel", "wireframe_mode": "Draadmodel",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Groepeer elementen", "group_elements": "Groepeer elementen",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Zet om naar pad", "to_path": "Zet om naar pad",
"reorient_path": "Herorienteer pad", "reorient_path": "Herorienteer pad",
"ungroup": "Groepering opheffen", "ungroup": "Groepering opheffen",
"docprops": "Documenteigenschappen", "docprops": "Documenteigenschappen",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Naar achtergrond", "move_bottom": "Naar achtergrond",
"move_top": "Naar voorgrond", "move_top": "Naar voorgrond",
"node_clone": "Kloon knooppunt", "node_clone": "Kloon knooppunt",
"node_delete": "Delete knooppunt", "node_delete": "Delete knooppunt",
"node_link": "Koppel controle punten", "node_link": "Koppel controle punten",
"add_subpath": "Subpad toevoegen", "add_subpath": "Subpad toevoegen",
"openclose_path": "Open/sluit subpad", "openclose_path": "Open/sluit subpad",
"source_save": "Veranderingen toepassen", "source_save": "Veranderingen toepassen",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Laag", "layer": "Laag",
"layers": "Layers", "layers": "Layers",
"del": "Delete laag", "del": "Delete laag",
"move_down": "Beweeg laag omlaag", "move_down": "Beweeg laag omlaag",
"new": "Nieuwe laag", "new": "Nieuwe laag",
"rename": "Hernoem laag", "rename": "Hernoem laag",
"move_up": "Beweeg laag omhoog", "move_up": "Beweeg laag omhoog",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Verplaats elementen naar:", "move_elems_to": "Verplaats elementen naar:",
"move_selected": "Verplaats geselecteerde elementen naar andere laag" "move_selected": "Verplaats geselecteerde elementen naar andere laag"
}, },
config: { config: {
"image_props": "Afbeeldingeigenschappen", "image_props": "Afbeeldingeigenschappen",
"doc_title": "Titel", "doc_title": "Titel",
"doc_dims": "Canvas afmetingen", "doc_dims": "Canvas afmetingen",
"included_images": "Ingesloten afbeeldingen", "included_images": "Ingesloten afbeeldingen",
"image_opt_embed": "Toevoegen data (lokale bestanden)", "image_opt_embed": "Toevoegen data (lokale bestanden)",
"image_opt_ref": "Gebruik bestand referentie", "image_opt_ref": "Gebruik bestand referentie",
"editor_prefs": "Editor eigenschappen", "editor_prefs": "Editor eigenschappen",
"icon_size": "Icoon grootte", "icon_size": "Icoon grootte",
"language": "Taal", "language": "Taal",
"background": "Editor achtergrond", "background": "Editor achtergrond",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Let op: De achtergrond wordt niet opgeslagen met de afbeelding.", "editor_bg_note": "Let op: De achtergrond wordt niet opgeslagen met de afbeelding.",
"icon_large": "Groot", "icon_large": "Groot",
"icon_medium": "Gemiddeld", "icon_medium": "Gemiddeld",
"icon_small": "Klein", "icon_small": "Klein",
"icon_xlarge": "Extra groot", "icon_xlarge": "Extra groot",
"select_predefined": "Kies voorgedefinieerd:", "select_predefined": "Kies voorgedefinieerd:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Verkeerde waarde gegeven", "invalidAttrValGiven": "Verkeerde waarde gegeven",
"noContentToFitTo": "Geen inhoud om omheen te passen", "noContentToFitTo": "Geen inhoud om omheen te passen",
"dupeLayerName": "Er is al een laag met die naam!", "dupeLayerName": "Er is al een laag met die naam!",
"enterUniqueLayerName": "Geef een unieke laag naam", "enterUniqueLayerName": "Geef een unieke laag naam",
"enterNewLayerName": "Geef een nieuwe laag naam", "enterNewLayerName": "Geef een nieuwe laag naam",
"layerHasThatName": "Laag heeft al die naam", "layerHasThatName": "Laag heeft al die naam",
"QmoveElemsToLayer": "Verplaats geselecteerde elementen naar laag '%s'?", "QmoveElemsToLayer": "Verplaats geselecteerde elementen naar laag '%s'?",
"QwantToClear": "Wil je de afbeelding leeg maken?\nDit zal ook de ongedaan maak geschiedenis wissen!", "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!", "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?", "QerrorsRevertToSource": "Er waren analyse fouten in je SVG bron.\nTeruggaan naar de originele SVG bron?",
"QignoreSourceChanges": "Veranderingen in de SVG bron negeren?", "QignoreSourceChanges": "Veranderingen in de SVG bron negeren?",
"featNotSupported": "Functie wordt niet ondersteund", "featNotSupported": "Functie wordt niet ondersteund",
"enterNewImgURL": "Geef de nieuwe afbeelding URL", "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.", "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.", "saveFromBrowser": "Kies \"Save As...\" in je browser om dit plaatje op te slaan als een %s bestand.",
"noteTheseIssues": "Let op de volgende problemen: ", "noteTheseIssues": "Let op de volgende problemen: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "no", lang: "no",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Lagre", "ok": "Lagre",
"cancel": "Avbryt", "cancel": "Avbryt",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Click å endre fyllfarge, shift-klikke for å endre slag farge", "palette_info": "Click å endre fyllfarge, shift-klikke for å endre slag farge",
"zoom_level": "Endre zoomnivå", "zoom_level": "Endre zoomnivå",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Endre fyllfarge", "fill_color": "Endre fyllfarge",
"stroke_color": "Endre stroke color", "stroke_color": "Endre stroke color",
"stroke_style": "Endre stroke dash stil", "stroke_style": "Endre stroke dash stil",
"stroke_width": "Endre stroke width", "stroke_width": "Endre stroke width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Endre rotasjonsvinkelen", "angle": "Endre rotasjonsvinkelen",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Endre valgte elementet opasitet", "opacity": "Endre valgte elementet opasitet",
"circle_cx": "Endre sirkelens CX koordinatsystem", "circle_cx": "Endre sirkelens CX koordinatsystem",
"circle_cy": "Endre sirkelens koordinere cy", "circle_cy": "Endre sirkelens koordinere cy",
"circle_r": "Endre sirkelens radius", "circle_r": "Endre sirkelens radius",
"ellipse_cx": "Endre ellipse&#39;s CX koordinatsystem", "ellipse_cx": "Endre ellipse&#39;s CX koordinatsystem",
"ellipse_cy": "Endre ellipse&#39;s koordinere cy", "ellipse_cy": "Endre ellipse&#39;s koordinere cy",
"ellipse_rx": "Endre ellipse&#39;s x radius", "ellipse_rx": "Endre ellipse&#39;s x radius",
"ellipse_ry": "Endre ellipse&#39;s y radius", "ellipse_ry": "Endre ellipse&#39;s y radius",
"line_x1": "Endre linje begynner x koordinat", "line_x1": "Endre linje begynner x koordinat",
"line_x2": "Endre linje&#39;s ending x koordinat", "line_x2": "Endre linje&#39;s ending x koordinat",
"line_y1": "Endre linje begynner y koordinat", "line_y1": "Endre linje begynner y koordinat",
"line_y2": "Endre linje&#39;s ending y koordinat", "line_y2": "Endre linje&#39;s ending y koordinat",
"rect_height": "Endre rektangel høyde", "rect_height": "Endre rektangel høyde",
"rect_width": "Endre rektangel bredde", "rect_width": "Endre rektangel bredde",
"corner_radius": "Endre rektangel Corner Radius", "corner_radius": "Endre rektangel Corner Radius",
"image_width": "Endre bilde bredde", "image_width": "Endre bilde bredde",
"image_height": "Endre bilde høyde", "image_height": "Endre bilde høyde",
"image_url": "Endre URL", "image_url": "Endre URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Endre tekst innholdet", "text_contents": "Endre tekst innholdet",
"font_family": "Change Font Family", "font_family": "Change Font Family",
"font_size": "Endre skriftstørrelse", "font_size": "Endre skriftstørrelse",
"bold": "Fet tekst", "bold": "Fet tekst",
"italic": "Kursiv tekst" "italic": "Kursiv tekst"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Endre bakgrunnsfarge / opacity", "bkgnd_color_opac": "Endre bakgrunnsfarge / opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Passer til alt innhold", "fit_to_all": "Passer til alt innhold",
"fit_to_canvas": "Tilpass til lerret", "fit_to_canvas": "Tilpass til lerret",
"fit_to_layer_content": "Fit to lag innhold", "fit_to_layer_content": "Fit to lag innhold",
"fit_to_sel": "Tilpass til valg", "fit_to_sel": "Tilpass til valg",
"align_relative_to": "Juster i forhold til ...", "align_relative_to": "Juster i forhold til ...",
"relativeTo": "i forhold til:", "relativeTo": "i forhold til:",
"page": "side", "page": "side",
"largest_object": "største objekt", "largest_object": "største objekt",
"selected_objects": "velges objekter", "selected_objects": "velges objekter",
"smallest_object": "minste objekt", "smallest_object": "minste objekt",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Åpne Image", "open_doc": "Åpne Image",
"export_img": "Export", "export_img": "Export",
"save_doc": "Lagre bilde", "save_doc": "Lagre bilde",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Midtstill", "align_center": "Midtstill",
"align_left": "Venstrejuster", "align_left": "Venstrejuster",
"align_middle": "Rett Middle", "align_middle": "Rett Middle",
"align_right": "Høyrejuster", "align_right": "Høyrejuster",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Linjeverktøy", "mode_line": "Linjeverktøy",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand rektangel", "mode_fhrect": "Free-Hand rektangel",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Angre", "undo": "Angre",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Gruppe Elements", "group_elements": "Gruppe Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Dele opp Elements", "ungroup": "Dele opp Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Flytt til toppen", "move_top": "Flytt til toppen",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Lagre", "source_save": "Lagre",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Slett laget", "del": "Slett laget",
"move_down": "Flytt laget ned", "move_down": "Flytt laget ned",
"new": "Nytt lag", "new": "Nytt lag",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Flytt Layer Up", "move_up": "Flytt Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Velg forhåndsdefinerte:", "select_predefined": "Velg forhåndsdefinerte:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,252 +1,252 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "pl", lang: "pl",
dir: "ltr", dir: "ltr",
author: "Aleksander Lurie", author: "Aleksander Lurie",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "Anuluj", "cancel": "Anuluj",
"key_backspace": "usuń", "key_backspace": "usuń",
"key_del": "usuń", "key_del": "usuń",
"key_down": "w dół", "key_down": "w dół",
"key_up": "w górę", "key_up": "w górę",
"more_opts": "więcej opcji", "more_opts": "więcej opcji",
"url": "adres url", "url": "adres url",
"width": "Szerokość", "width": "Szerokość",
"height": "Wysokość" "height": "Wysokość"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Pokaż/ukryj więcej opcji obramowania", "toggle_stroke_tools": "Pokaż/ukryj więcej opcji obramowania",
"palette_info": "Kliknij aby zmienić kolor wypełnienia, przytrzymaj shift aby zmienić kolor obramowania", "palette_info": "Kliknij aby zmienić kolor wypełnienia, przytrzymaj shift aby zmienić kolor obramowania",
"zoom_level": "Zmiana powiększenia", "zoom_level": "Zmiana powiększenia",
"panel_drag": "Przeciągnij w lewo/prawo aby zmienić szerokość panelu" "panel_drag": "Przeciągnij w lewo/prawo aby zmienić szerokość panelu"
}, },
properties: { properties: {
"id": "Identyfikator elementu", "id": "Identyfikator elementu",
"fill_color": "Zmień kolor wypełnienia", "fill_color": "Zmień kolor wypełnienia",
"stroke_color": "Zmień kolor obramowania", "stroke_color": "Zmień kolor obramowania",
"stroke_style": "Zmień styl obramowania", "stroke_style": "Zmień styl obramowania",
"stroke_width": "Zmień szerokość obramowania o 1, przytrzymaj shift aby zmienić szerokość o 0.1", "stroke_width": "Zmień szerokość obramowania o 1, przytrzymaj shift aby zmienić szerokość o 0.1",
"pos_x": "Zmień współrzędną X", "pos_x": "Zmień współrzędną X",
"pos_y": "Zmień współrzędną Y", "pos_y": "Zmień współrzędną Y",
"linecap_butt": "Zakończenie linii: grzbiet", "linecap_butt": "Zakończenie linii: grzbiet",
"linecap_round": "Zakończenie linii: zaokrąglone", "linecap_round": "Zakończenie linii: zaokrąglone",
"linecap_square": "Zakończenie linii: kwadrat", "linecap_square": "Zakończenie linii: kwadrat",
"linejoin_bevel": "Łączenie linii: ścięte", "linejoin_bevel": "Łączenie linii: ścięte",
"linejoin_miter": "Łączenie linii: ostre", "linejoin_miter": "Łączenie linii: ostre",
"linejoin_round": "Łączenie linii: zaokrąglone", "linejoin_round": "Łączenie linii: zaokrąglone",
"angle": "Zmień kąt obrotu", "angle": "Zmień kąt obrotu",
"blur": "Zmień wartość rozmycia gaussa", "blur": "Zmień wartość rozmycia gaussa",
"opacity": "Zmień przezroczystość zaznaczonego elementu", "opacity": "Zmień przezroczystość zaznaczonego elementu",
"circle_cx": "Zmień współrzędną cx okręgu", "circle_cx": "Zmień współrzędną cx okręgu",
"circle_cy": "Zmień współrzędną cy okręgu", "circle_cy": "Zmień współrzędną cy okręgu",
"circle_r": "zmień promień okręgu", "circle_r": "zmień promień okręgu",
"ellipse_cx": "Zmień współrzędną cx elipsy", "ellipse_cx": "Zmień współrzędną cx elipsy",
"ellipse_cy": "Zmień współrzędną cy elipsy", "ellipse_cy": "Zmień współrzędną cy elipsy",
"ellipse_rx": "Zmień promień x elipsy", "ellipse_rx": "Zmień promień x elipsy",
"ellipse_ry": "Zmień promień y elipsy", "ellipse_ry": "Zmień promień y elipsy",
"line_x1": "Zmień współrzędna x początku linii", "line_x1": "Zmień współrzędna x początku linii",
"line_x2": "Zmień współrzędną x końca linii", "line_x2": "Zmień współrzędną x końca linii",
"line_y1": "Zmień współrzędną y początku linii", "line_y1": "Zmień współrzędną y początku linii",
"line_y2": "Zmień współrzędną y końca linii", "line_y2": "Zmień współrzędną y końca linii",
"rect_height": "Zmień wysokość prostokąta", "rect_height": "Zmień wysokość prostokąta",
"rect_width": "Zmień szerokość prostokąta", "rect_width": "Zmień szerokość prostokąta",
"corner_radius": "Zmień promień zaokrąglenia narożników prostokąta", "corner_radius": "Zmień promień zaokrąglenia narożników prostokąta",
"image_width": "Zmień wysokość obrazu", "image_width": "Zmień wysokość obrazu",
"image_height": "Zmień szerokość obrazu", "image_height": "Zmień szerokość obrazu",
"image_url": "Zmień adres URL", "image_url": "Zmień adres URL",
"node_x": "Zmień współrzędną x węzła", "node_x": "Zmień współrzędną x węzła",
"node_y": "Zmień współrzędną y węzła", "node_y": "Zmień współrzędną y węzła",
"seg_type": "Zmień typ segmentu", "seg_type": "Zmień typ segmentu",
"straight_segments": "Prosty", "straight_segments": "Prosty",
"curve_segments": "Zaokrąglony", "curve_segments": "Zaokrąglony",
"text_contents": "Zmień text", "text_contents": "Zmień text",
"font_family": "Zmień krój czcionki", "font_family": "Zmień krój czcionki",
"font_size": "Zmień rozmiar czcionki", "font_size": "Zmień rozmiar czcionki",
"bold": "Pogrubienie textu", "bold": "Pogrubienie textu",
"italic": "Kursywa" "italic": "Kursywa"
}, },
tools: { tools: {
"main_menu": "Menu główne", "main_menu": "Menu główne",
"bkgnd_color_opac": "Zmiana koloru/przezroczystości tła", "bkgnd_color_opac": "Zmiana koloru/przezroczystości tła",
"connector_no_arrow": "Brak strzałek", "connector_no_arrow": "Brak strzałek",
"fitToContent": "Dopasuj do zawartości", "fitToContent": "Dopasuj do zawartości",
"fit_to_all": "Dopasuj do całej zawartości", "fit_to_all": "Dopasuj do całej zawartości",
"fit_to_canvas": "Dopasuj do widoku", "fit_to_canvas": "Dopasuj do widoku",
"fit_to_layer_content": "Dopasuj do zawartości warstwy", "fit_to_layer_content": "Dopasuj do zawartości warstwy",
"fit_to_sel": "Dopasuj do zaznaczenia", "fit_to_sel": "Dopasuj do zaznaczenia",
"align_relative_to": "Wyrównaj relatywnie do ...", "align_relative_to": "Wyrównaj relatywnie do ...",
"relativeTo": "relatywnie do:", "relativeTo": "relatywnie do:",
"page": "strona", "page": "strona",
"largest_object": "największy obiekt", "largest_object": "największy obiekt",
"selected_objects": "zaznaczone obiekty", "selected_objects": "zaznaczone obiekty",
"smallest_object": "najmniejszy obiekt", "smallest_object": "najmniejszy obiekt",
"new_doc": "Nowy obraz", "new_doc": "Nowy obraz",
"open_doc": "Otwórz obraz", "open_doc": "Otwórz obraz",
"export_img": "Eksportuj", "export_img": "Eksportuj",
"save_doc": "Zapisz obraz", "save_doc": "Zapisz obraz",
"import_doc": "Importuj SVG", "import_doc": "Importuj SVG",
"align_to_page": "Wyrównaj element do strony", "align_to_page": "Wyrównaj element do strony",
"align_bottom": "Wyrównaj do dołu", "align_bottom": "Wyrównaj do dołu",
"align_center": "Wyśrodkuj w poziomie", "align_center": "Wyśrodkuj w poziomie",
"align_left": "Wyrównaj do lewej", "align_left": "Wyrównaj do lewej",
"align_middle": "Wyśrodkuj w pionie", "align_middle": "Wyśrodkuj w pionie",
"align_right": "Wyrównaj do prawej", "align_right": "Wyrównaj do prawej",
"align_top": "Wyrównaj do góry", "align_top": "Wyrównaj do góry",
"mode_select": "Zaznaczenie", "mode_select": "Zaznaczenie",
"mode_fhpath": "Ołówek", "mode_fhpath": "Ołówek",
"mode_line": "Linia", "mode_line": "Linia",
"mode_connect": "Połącz dwa obiekty", "mode_connect": "Połącz dwa obiekty",
"mode_rect": "Prostokąt", "mode_rect": "Prostokąt",
"mode_square": "Kwadrat", "mode_square": "Kwadrat",
"mode_fhrect": "Dowolny prostokąt", "mode_fhrect": "Dowolny prostokąt",
"mode_ellipse": "Elipsa", "mode_ellipse": "Elipsa",
"mode_circle": "Okrąg", "mode_circle": "Okrąg",
"mode_fhellipse": "Dowolna elipsa", "mode_fhellipse": "Dowolna elipsa",
"mode_path": "Ścieżka", "mode_path": "Ścieżka",
"mode_shapelib": "Biblioteka kształtów", "mode_shapelib": "Biblioteka kształtów",
"mode_text": "Tekst", "mode_text": "Tekst",
"mode_image": "Obraz", "mode_image": "Obraz",
"mode_zoom": "Powiększenie", "mode_zoom": "Powiększenie",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "Uwaga: Ten obraz nie może być osadzony. Być może podany adres na to nie pozwala", "no_embed": "Uwaga: Ten obraz nie może być osadzony. Być może podany adres na to nie pozwala",
"undo": "Wstecz", "undo": "Wstecz",
"redo": "Dalej", "redo": "Dalej",
"tool_source": "Edytuj źródło", "tool_source": "Edytuj źródło",
"wireframe_mode": "Tryb szkieletowy", "wireframe_mode": "Tryb szkieletowy",
"toggle_grid": "Pokaż/ukryj siatkę", "toggle_grid": "Pokaż/ukryj siatkę",
"clone": "Klonuj element(y)", "clone": "Klonuj element(y)",
"del": "Usuń warstwę", "del": "Usuń warstwę",
"group_elements": "Grupuj elementy", "group_elements": "Grupuj elementy",
"make_link": "Utwórz łącze", "make_link": "Utwórz łącze",
"set_link_url": "Ustal adres URL (pozostaw puste aby usunąć)", "set_link_url": "Ustal adres URL (pozostaw puste aby usunąć)",
"to_path": "Konwertuj do ścieżki", "to_path": "Konwertuj do ścieżki",
"reorient_path": "Zresetuj obwiednię", "reorient_path": "Zresetuj obwiednię",
"ungroup": "Rozgrupuj elementy", "ungroup": "Rozgrupuj elementy",
"docprops": "Właściwości dokumentu", "docprops": "Właściwości dokumentu",
"imagelib": "Biblioteka obrazów", "imagelib": "Biblioteka obrazów",
"move_bottom": "Przenieś pod spód", "move_bottom": "Przenieś pod spód",
"move_top": "Przenieś na wierzch", "move_top": "Przenieś na wierzch",
"node_clone": "Klonuj węzeł", "node_clone": "Klonuj węzeł",
"node_delete": "Usuń węzeł", "node_delete": "Usuń węzeł",
"node_link": "Podłącz punkty kontrolne", "node_link": "Podłącz punkty kontrolne",
"add_subpath": "Dodaj ścieżkę podrzędną", "add_subpath": "Dodaj ścieżkę podrzędną",
"openclose_path": "Otwórz/zamknij ścieżkę podrzędną", "openclose_path": "Otwórz/zamknij ścieżkę podrzędną",
"source_save": "Zachowaj zmiany", "source_save": "Zachowaj zmiany",
"cut": "Wytnij", "cut": "Wytnij",
"copy": "Kopiuj", "copy": "Kopiuj",
"paste": "Wklej", "paste": "Wklej",
"paste_in_place": "Wklej w miejscu", "paste_in_place": "Wklej w miejscu",
"delete": "Usuń", "delete": "Usuń",
"group": "Grupuj", "group": "Grupuj",
"move_front": "Przenieś do przodu", "move_front": "Przenieś do przodu",
"move_up": "Przenieś warstwę w górę", "move_up": "Przenieś warstwę w górę",
"move_down": "Przenieś warstwę w dół", "move_down": "Przenieś warstwę w dół",
"move_back": "Przenieś do tyłu" "move_back": "Przenieś do tyłu"
}, },
layers: { layers: {
"layer": "Warstwa", "layer": "Warstwa",
"layers": "Warstwy", "layers": "Warstwy",
"del": "Usuń warstwę", "del": "Usuń warstwę",
"move_down": "Przenieś warstwę w dół", "move_down": "Przenieś warstwę w dół",
"new": "Nowa warstwa", "new": "Nowa warstwa",
"rename": "Zmień nazwę warstwy", "rename": "Zmień nazwę warstwy",
"move_up": "Przenieś warstwę w górę", "move_up": "Przenieś warstwę w górę",
"dupe": "Duplikuj warstwę", "dupe": "Duplikuj warstwę",
"merge_down": "Scal w dół", "merge_down": "Scal w dół",
"merge_all": "Scal wszystko", "merge_all": "Scal wszystko",
"move_elems_to": "Przenieś elementy do:", "move_elems_to": "Przenieś elementy do:",
"move_selected": "Przenieś zaznaczone elementy do innej warstwy" "move_selected": "Przenieś zaznaczone elementy do innej warstwy"
}, },
config: { config: {
"image_props": "Własciwości obrazu", "image_props": "Własciwości obrazu",
"doc_title": "Tytuł", "doc_title": "Tytuł",
"doc_dims": "Wymiary pola roboczego", "doc_dims": "Wymiary pola roboczego",
"included_images": "Dołączone obrazy", "included_images": "Dołączone obrazy",
"image_opt_embed": "Dane osadzone (pliki lokalne)", "image_opt_embed": "Dane osadzone (pliki lokalne)",
"image_opt_ref": "Użyj referencji do pliku", "image_opt_ref": "Użyj referencji do pliku",
"editor_prefs": "Ustawienia edytora", "editor_prefs": "Ustawienia edytora",
"icon_size": "Rozmiar ikon", "icon_size": "Rozmiar ikon",
"language": "Język", "language": "Język",
"background": "Tło edytora", "background": "Tło edytora",
"editor_img_url": "Adres URL obrazu", "editor_img_url": "Adres URL obrazu",
"editor_bg_note": "Uwaga: Tło nie zostało zapisane z obrazem.", "editor_bg_note": "Uwaga: Tło nie zostało zapisane z obrazem.",
"icon_large": "Duże", "icon_large": "Duże",
"icon_medium": "Średnie", "icon_medium": "Średnie",
"icon_small": "Małe", "icon_small": "Małe",
"icon_xlarge": "Bardzo duże", "icon_xlarge": "Bardzo duże",
"select_predefined": "Wybierz predefiniowany:", "select_predefined": "Wybierz predefiniowany:",
"units_and_rulers": "Jednostki/Linijki", "units_and_rulers": "Jednostki/Linijki",
"show_rulers": "Pokaż linijki", "show_rulers": "Pokaż linijki",
"base_unit": "Podstawowa jednostka:", "base_unit": "Podstawowa jednostka:",
"grid": "Siatka", "grid": "Siatka",
"snapping_onoff": "Włącz/wyłącz przyciąganie", "snapping_onoff": "Włącz/wyłącz przyciąganie",
"snapping_stepsize": "Przyciągaj co:", "snapping_stepsize": "Przyciągaj co:",
"grid_color": "Kolor siatki" "grid_color": "Kolor siatki"
}, },
shape_cats: { shape_cats: {
"basic": "Podstawowe", "basic": "Podstawowe",
"object": "Obiekty", "object": "Obiekty",
"symbol": "Symbole", "symbol": "Symbole",
"arrow": "Strzałki", "arrow": "Strzałki",
"flowchart": "Bloki", "flowchart": "Bloki",
"animal": "Zwierzęta", "animal": "Zwierzęta",
"game": "Karty i szachy", "game": "Karty i szachy",
"dialog_balloon": "Dymki", "dialog_balloon": "Dymki",
"electronics": "Elektronika", "electronics": "Elektronika",
"math": "Matematyka", "math": "Matematyka",
"music": "Muzyka", "music": "Muzyka",
"misc": "Inne", "misc": "Inne",
"raphael_1": "raphaeljs.com zestaw 1", "raphael_1": "raphaeljs.com zestaw 1",
"raphael_2": "raphaeljs.com zestaw 2" "raphael_2": "raphaeljs.com zestaw 2"
}, },
imagelib: { imagelib: {
"select_lib": "Wybierz bibliotekę obrazów", "select_lib": "Wybierz bibliotekę obrazów",
"show_list": "Pokaż listę bibliotek", "show_list": "Pokaż listę bibliotek",
"import_single": "Importuj pojedyńczo", "import_single": "Importuj pojedyńczo",
"import_multi": "Importuj wiele", "import_multi": "Importuj wiele",
"open": "Otwórz jako nowy dokument" "open": "Otwórz jako nowy dokument"
}, },
notification: { notification: {
"invalidAttrValGiven": "Podano nieprawidłową wartość", "invalidAttrValGiven": "Podano nieprawidłową wartość",
"noContentToFitTo": "Brak zawartości do dopasowania", "noContentToFitTo": "Brak zawartości do dopasowania",
"dupeLayerName": "Istnieje już warstwa o takiej nazwie!", "dupeLayerName": "Istnieje już warstwa o takiej nazwie!",
"enterUniqueLayerName": "Podaj unikalną nazwę warstwy", "enterUniqueLayerName": "Podaj unikalną nazwę warstwy",
"enterNewLayerName": "Podaj nazwe nowej warstwy", "enterNewLayerName": "Podaj nazwe nowej warstwy",
"layerHasThatName": "Warstwa już tak się nazywa", "layerHasThatName": "Warstwa już tak się nazywa",
"QmoveElemsToLayer": "Przenies zaznaczone elementy do warstwy \"%s\"?", "QmoveElemsToLayer": "Przenies zaznaczone elementy do warstwy \"%s\"?",
"QwantToClear": "Jesteś pewien, że chcesz wyczyścić pole robocze?\nHistoria projektu również zostanie skasowana", "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", "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?", "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?", "QignoreSourceChanges": "Zignorowac zmiany w źródle pliku SVG?",
"featNotSupported": "Funkcjonalność niedostępna", "featNotSupported": "Funkcjonalność niedostępna",
"enterNewImgURL": "Podaj adres URL nowego obrazu", "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.", "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.", "saveFromBrowser": "Wybierz \"Zapisz jako...\" w przeglądarce aby zapisać obraz jako plik %s.",
"noteTheseIssues": "Zwróć uwagę na nastepujące kwestie: ", "noteTheseIssues": "Zwróć uwagę na nastepujące kwestie: ",
"unsavedChanges": "Wykryto niezapisane zmiany.", "unsavedChanges": "Wykryto niezapisane zmiany.",
"enterNewLinkURL": "Wpisz nowy adres URL hiperłącza", "enterNewLinkURL": "Wpisz nowy adres URL hiperłącza",
"errorLoadingSVG": "Błąd: Nie można załadować danych SVG", "errorLoadingSVG": "Błąd: Nie można załadować danych SVG",
"URLloadFail": "Nie można załadować z adresu URL", "URLloadFail": "Nie można załadować z adresu URL",
"retrieving": "Pobieranie \"%s\"..." "retrieving": "Pobieranie \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,250 +1,250 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "pt-BR", lang: "pt-BR",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "Cancelar", "cancel": "Cancelar",
"key_backspace": "Tecla backspace", "key_backspace": "Tecla backspace",
"key_del": "Tecla delete", "key_del": "Tecla delete",
"key_down": "Seta para baixo", "key_down": "Seta para baixo",
"key_up": "Seta para cima", "key_up": "Seta para cima",
"more_opts": "Mais opções", "more_opts": "Mais opções",
"url": "URL", "url": "URL",
"width": "Largura", "width": "Largura",
"height": "Altura" "height": "Altura"
}, },
misc: { misc: {
"powered_by": "Tecnologia" "powered_by": "Tecnologia"
}, },
ui: { ui: {
"toggle_stroke_tools": "Mais opções de traço", "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", "zoom_level": "Mudar zoom",
"panel_drag": "Arraste para redimensionar o painel" "panel_drag": "Arraste para redimensionar o painel"
}, },
properties: { properties: {
"id": "Identifica o elemento", "id": "Identifica o elemento",
"fill_color": "Mudar a cor de preenchimento", "fill_color": "Mudar a cor de preenchimento",
"stroke_color": "Mudar a cor do traço", "stroke_color": "Mudar a cor do traço",
"stroke_style": "Mudar o estilo do traço", "stroke_style": "Mudar o estilo do traço",
"stroke_width": "Mudar a espessura do traço em 1, shift-click para mudar 0.1", "stroke_width": "Mudar a espessura do traço em 1, shift-click para mudar 0.1",
"pos_x": "Mudar a coordenada X", "pos_x": "Mudar a coordenada X",
"pos_y": "Mudar a coordenada Y", "pos_y": "Mudar a coordenada Y",
"linecap_butt": "Estilo do fim do traço: Topo", "linecap_butt": "Estilo do fim do traço: Topo",
"linecap_round": "Estilo do fim do traço: Redondo", "linecap_round": "Estilo do fim do traço: Redondo",
"linecap_square": "Estilo do fim do traço: Quadrado", "linecap_square": "Estilo do fim do traço: Quadrado",
"linejoin_bevel": "Estilo da Aresta: Chanfro", "linejoin_bevel": "Estilo da Aresta: Chanfro",
"linejoin_miter": "Estilo da Aresta: Reto", "linejoin_miter": "Estilo da Aresta: Reto",
"linejoin_round": "Estilo da Aresta: Redondo", "linejoin_round": "Estilo da Aresta: Redondo",
"angle": "Mudar ângulo de rotação", "angle": "Mudar ângulo de rotação",
"blur": "Mudar valor de desfoque", "blur": "Mudar valor de desfoque",
"opacity": "Mudar opacidade do item selecionado", "opacity": "Mudar opacidade do item selecionado",
"circle_cx": "Mudar a coordenada cx do círculo", "circle_cx": "Mudar a coordenada cx do círculo",
"circle_cy": "Mudar a coordenada cy do círculo", "circle_cy": "Mudar a coordenada cy do círculo",
"circle_r": "Mudar o raio do círculo", "circle_r": "Mudar o raio do círculo",
"ellipse_cx": "Mudar a coordenada cx da elípse", "ellipse_cx": "Mudar a coordenada cx da elípse",
"ellipse_cy": "Mudar a coordenada cy da elípse", "ellipse_cy": "Mudar a coordenada cy da elípse",
"ellipse_rx": "Mudar o raio x da elípse", "ellipse_rx": "Mudar o raio x da elípse",
"ellipse_ry": "Mudar o raio y da elípse", "ellipse_ry": "Mudar o raio y da elípse",
"line_x1": "Mudar a coordenada x do início da linha", "line_x1": "Mudar a coordenada x do início da linha",
"line_x2": "Mudar a coordenada x do fim da linha", "line_x2": "Mudar a coordenada x do fim da linha",
"line_y1": "Mudar a coordenada y do início da linha", "line_y1": "Mudar a coordenada y do início da linha",
"line_y2": "Mudar a coordenada y do fim da linha", "line_y2": "Mudar a coordenada y do fim da linha",
"rect_height": "Mudar a altura do retângulo", "rect_height": "Mudar a altura do retângulo",
"rect_width": "Mudar a largura do retângulo", "rect_width": "Mudar a largura do retângulo",
"corner_radius": "Mudar o raio da aresta do retângulo", "corner_radius": "Mudar o raio da aresta do retângulo",
"image_width": "Mudar a largura da imagem", "image_width": "Mudar a largura da imagem",
"image_height": "Mudar a altura da imagem", "image_height": "Mudar a altura da imagem",
"image_url": "Mudar URL", "image_url": "Mudar URL",
"node_x": "Mudar a coordenada x da aresta", "node_x": "Mudar a coordenada x da aresta",
"node_y": "Mudar a coordenada y da aresta", "node_y": "Mudar a coordenada y da aresta",
"seg_type": "Mudar o tipo de segmento", "seg_type": "Mudar o tipo de segmento",
"straight_segments": "Reto", "straight_segments": "Reto",
"curve_segments": "Curvo", "curve_segments": "Curvo",
"text_contents": "Mudar conteúdo do texto", "text_contents": "Mudar conteúdo do texto",
"font_family": "Mudar o estilo da fonte", "font_family": "Mudar o estilo da fonte",
"font_size": "Mudar o tamanho da fonte", "font_size": "Mudar o tamanho da fonte",
"bold": "Negrito", "bold": "Negrito",
"italic": "Italico" "italic": "Italico"
}, },
tools: { tools: {
"main_menu": "Menu Principal", "main_menu": "Menu Principal",
"bkgnd_color_opac": "Mudar cor/opacidade do fundo", "bkgnd_color_opac": "Mudar cor/opacidade do fundo",
"connector_no_arrow": "Sem flecha", "connector_no_arrow": "Sem flecha",
"fitToContent": "Ajustar ao conteúdo", "fitToContent": "Ajustar ao conteúdo",
"fit_to_all": "Ajustar a todo conteúdo", "fit_to_all": "Ajustar a todo conteúdo",
"fit_to_canvas": "Ajustar à tela", "fit_to_canvas": "Ajustar à tela",
"fit_to_layer_content": "Ajustar ao conteúdo da camada", "fit_to_layer_content": "Ajustar ao conteúdo da camada",
"fit_to_sel": "Ajustar à seleção", "fit_to_sel": "Ajustar à seleção",
"align_relative_to": "Alinhar em relação à ...", "align_relative_to": "Alinhar em relação à ...",
"relativeTo": "Referência:", "relativeTo": "Referência:",
"page": "página", "page": "página",
"largest_object": "maior objeto", "largest_object": "maior objeto",
"selected_objects": "objetos selecionados", "selected_objects": "objetos selecionados",
"smallest_object": "menor objeto", "smallest_object": "menor objeto",
"new_doc": "Nova imagem", "new_doc": "Nova imagem",
"open_doc": "Abrir imagem", "open_doc": "Abrir imagem",
"export_img": "Export", "export_img": "Export",
"save_doc": "Salvar imagem", "save_doc": "Salvar imagem",
"import_doc": "Importar SVG", "import_doc": "Importar SVG",
"align_to_page": "Alinhar elemento na página", "align_to_page": "Alinhar elemento na página",
"align_bottom": "Alinhar no fundo", "align_bottom": "Alinhar no fundo",
"align_center": "Alinhar no centro", "align_center": "Alinhar no centro",
"align_left": "Alinhar na esquerda", "align_left": "Alinhar na esquerda",
"align_middle": "Alinhar no meio", "align_middle": "Alinhar no meio",
"align_right": "Alinhar na direita", "align_right": "Alinhar na direita",
"align_top": "Alinhar no topo", "align_top": "Alinhar no topo",
"mode_select": "Selecão", "mode_select": "Selecão",
"mode_fhpath": "Lápis", "mode_fhpath": "Lápis",
"mode_line": "Linha", "mode_line": "Linha",
"mode_connect": "Conecção", "mode_connect": "Conecção",
"mode_rect": "Retângulo", "mode_rect": "Retângulo",
"mode_square": "Quadrado", "mode_square": "Quadrado",
"mode_fhrect": "Retângulo a mão-livre", "mode_fhrect": "Retângulo a mão-livre",
"mode_ellipse": "Elípse", "mode_ellipse": "Elípse",
"mode_circle": "Círculo", "mode_circle": "Círculo",
"mode_fhellipse": "Elípse a mão-livre", "mode_fhellipse": "Elípse a mão-livre",
"mode_path": "Contorno", "mode_path": "Contorno",
"mode_shapelib": "Biblioteca de Formas", "mode_shapelib": "Biblioteca de Formas",
"mode_text": "Texto", "mode_text": "Texto",
"mode_image": "Imagem", "mode_image": "Imagem",
"mode_zoom": "Zoom", "mode_zoom": "Zoom",
"mode_eyedropper": "Conta-gotas", "mode_eyedropper": "Conta-gotas",
"no_embed": "Atenção: Esta imagem não pode ser incorporada e dependerá de seu caminho para ser exibida", "no_embed": "Atenção: Esta imagem não pode ser incorporada e dependerá de seu caminho para ser exibida",
"undo": "Desfazer", "undo": "Desfazer",
"redo": "Refazer", "redo": "Refazer",
"tool_source": "Editar o código", "tool_source": "Editar o código",
"wireframe_mode": "Modo linhas", "wireframe_mode": "Modo linhas",
"toggle_grid": "Mostrar/Esconder grade", "toggle_grid": "Mostrar/Esconder grade",
"clone": "Clonar Elemento(s)", "clone": "Clonar Elemento(s)",
"del": "Deletar Elemento(s)", "del": "Deletar Elemento(s)",
"group_elements": "Agrupar Elementos", "group_elements": "Agrupar Elementos",
"make_link": "Criar (hyper)link", "make_link": "Criar (hyper)link",
"set_link_url": "Alterar URL (em branco para remover)", "set_link_url": "Alterar URL (em branco para remover)",
"to_path": "Converter para Contorno", "to_path": "Converter para Contorno",
"reorient_path": "Reorientar contorno", "reorient_path": "Reorientar contorno",
"ungroup": "Desagrupar Elementos", "ungroup": "Desagrupar Elementos",
"docprops": "Propriedades", "docprops": "Propriedades",
"imagelib": "Biblioteca de Imagens", "imagelib": "Biblioteca de Imagens",
"move_bottom": "Mover para o fundo", "move_bottom": "Mover para o fundo",
"move_top": "Mover para o topo", "move_top": "Mover para o topo",
"node_clone": "Clonar Aresta", "node_clone": "Clonar Aresta",
"node_delete": "Deletar Aresta", "node_delete": "Deletar Aresta",
"node_link": "Alinhar pontos de controle", "node_link": "Alinhar pontos de controle",
"add_subpath": "Adicionar contorno", "add_subpath": "Adicionar contorno",
"openclose_path": "Abrir/Fechar contorno", "openclose_path": "Abrir/Fechar contorno",
"source_save": "Salvar", "source_save": "Salvar",
"cut": "Recortar", "cut": "Recortar",
"copy": "Copiar", "copy": "Copiar",
"paste": "Colar", "paste": "Colar",
"paste_in_place": "Colar no mesmo local", "paste_in_place": "Colar no mesmo local",
"delete": "Deletar", "delete": "Deletar",
"group": "Agrupar", "group": "Agrupar",
"move_front": "Trazer para Frente", "move_front": "Trazer para Frente",
"move_up": "Avançar", "move_up": "Avançar",
"move_down": "Recuar", "move_down": "Recuar",
"move_back": "Enviar para Trás" "move_back": "Enviar para Trás"
}, },
layers: { layers: {
"layer": "Camada", "layer": "Camada",
"layers": "Camadas", "layers": "Camadas",
"del": "Deletar Camada", "del": "Deletar Camada",
"move_down": "Enviar Camada para Trás", "move_down": "Enviar Camada para Trás",
"new": "Nova Camada", "new": "Nova Camada",
"rename": "Renomear Camada", "rename": "Renomear Camada",
"move_up": "Trazer Camada para Frente", "move_up": "Trazer Camada para Frente",
"dupe": "Duplicar Camada", "dupe": "Duplicar Camada",
"merge_down": "Achatar para baixo", "merge_down": "Achatar para baixo",
"merge_all": "Achatar todas", "merge_all": "Achatar todas",
"move_elems_to": "Mover elementos para:", "move_elems_to": "Mover elementos para:",
"move_selected": "Mover elementos selecionados para outra camada" "move_selected": "Mover elementos selecionados para outra camada"
}, },
config: { config: {
"image_props": "Propriedades", "image_props": "Propriedades",
"doc_title": "Título", "doc_title": "Título",
"doc_dims": "Dimensões", "doc_dims": "Dimensões",
"included_images": "Imagens", "included_images": "Imagens",
"image_opt_embed": "Incorporadas (arquivos locais)", "image_opt_embed": "Incorporadas (arquivos locais)",
"image_opt_ref": "Usar referência", "image_opt_ref": "Usar referência",
"editor_prefs": "Preferências", "editor_prefs": "Preferências",
"icon_size": "Tamanho dos ícones", "icon_size": "Tamanho dos ícones",
"language": "Idioma", "language": "Idioma",
"background": "Fundo da página", "background": "Fundo da página",
"editor_img_url": "URL da Imagem", "editor_img_url": "URL da Imagem",
"editor_bg_note": "Atenção: Fundo da página não será salvo.", "editor_bg_note": "Atenção: Fundo da página não será salvo.",
"icon_large": "Grande", "icon_large": "Grande",
"icon_medium": "Médio", "icon_medium": "Médio",
"icon_small": "Pequeno", "icon_small": "Pequeno",
"icon_xlarge": "Extra Grande", "icon_xlarge": "Extra Grande",
"select_predefined": "Modelos:", "select_predefined": "Modelos:",
"units_and_rulers": "Unidade & Réguas", "units_and_rulers": "Unidade & Réguas",
"show_rulers": "Mostrar réguas", "show_rulers": "Mostrar réguas",
"base_unit": "Unidade base:", "base_unit": "Unidade base:",
"grid": "Grade", "grid": "Grade",
"snapping_onoff": "Snap on/off", "snapping_onoff": "Snap on/off",
"snapping_stepsize": "Intensidade do Snap:" "snapping_stepsize": "Intensidade do Snap:"
}, },
shape_cats: { shape_cats: {
"basic": "Básico", "basic": "Básico",
"object": "Objetos", "object": "Objetos",
"symbol": "Símbolos", "symbol": "Símbolos",
"arrow": "Flechas", "arrow": "Flechas",
"flowchart": "Fluxograma", "flowchart": "Fluxograma",
"animal": "Animais", "animal": "Animais",
"game": "Jogos", "game": "Jogos",
"dialog_balloon": "Balões", "dialog_balloon": "Balões",
"electronics": "Eletrônica", "electronics": "Eletrônica",
"math": "Matemática", "math": "Matemática",
"music": "Música", "music": "Música",
"misc": "Outros", "misc": "Outros",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Selecione uma biblioteca de imagens", "select_lib": "Selecione uma biblioteca de imagens",
"show_list": "Voltar à lista de bibliotecas", "show_list": "Voltar à lista de bibliotecas",
"import_single": "Importar um", "import_single": "Importar um",
"import_multi": "Importar múltiplos", "import_multi": "Importar múltiplos",
"open": "Abrir como novo" "open": "Abrir como novo"
}, },
notification: { notification: {
"invalidAttrValGiven": "Valor inválido", "invalidAttrValGiven": "Valor inválido",
"noContentToFitTo": "Não há conteúdo", "noContentToFitTo": "Não há conteúdo",
"dupeLayerName": "Nome duplicado", "dupeLayerName": "Nome duplicado",
"enterUniqueLayerName": "Insira um nome único", "enterUniqueLayerName": "Insira um nome único",
"enterNewLayerName": "Insira um novo nome", "enterNewLayerName": "Insira um novo nome",
"layerHasThatName": "A camada já pussui este nome", "layerHasThatName": "A camada já pussui este nome",
"QmoveElemsToLayer": "Mover elementos selecionados para a camada: \"%s\"?", "QmoveElemsToLayer": "Mover elementos selecionados para a camada: \"%s\"?",
"QwantToClear": "Deseja criar um novo arquivo?\nO histórico também será apagado!", "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!", "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?", "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?", "QignoreSourceChanges": "Ignorar as mudanças no código SVG?",
"featNotSupported": "Recurso não suportado", "featNotSupported": "Recurso não suportado",
"enterNewImgURL": "Insira nova URL da imagem", "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.", "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.", "saveFromBrowser": "Selecione \"Salvar como...\" no seu navegador para salvar esta imagem como um arquivo %s.",
"noteTheseIssues": "Atenção para as seguintes questões: ", "noteTheseIssues": "Atenção para as seguintes questões: ",
"unsavedChanges": "Existem alterações não salvas.", "unsavedChanges": "Existem alterações não salvas.",
"enterNewLinkURL": "Insira novo URL do hyperlink", "enterNewLinkURL": "Insira novo URL do hyperlink",
"errorLoadingSVG": "Erro: Impossível carregar dados SVG", "errorLoadingSVG": "Erro: Impossível carregar dados SVG",
"URLloadFail": "Impossível carregar deste URL", "URLloadFail": "Impossível carregar deste URL",
"retrieving": "Recuperando \"%s\"..." "retrieving": "Recuperando \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "pt-PT", lang: "pt-PT",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Salvar", "ok": "Salvar",
"cancel": "Cancelar", "cancel": "Cancelar",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Clique para mudar a cor de preenchimento, shift-clique para mudar a cor do curso", "palette_info": "Clique para mudar a cor de preenchimento, shift-clique para mudar a cor do curso",
"zoom_level": "Alterar o nível de zoom", "zoom_level": "Alterar o nível de zoom",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Alterar a cor de preenchimento", "fill_color": "Alterar a cor de preenchimento",
"stroke_color": "Mudar a cor do curso", "stroke_color": "Mudar a cor do curso",
"stroke_style": "Alterar o estilo do traço do curso", "stroke_style": "Alterar o estilo do traço do curso",
"stroke_width": "Alterar a largura do curso", "stroke_width": "Alterar a largura do curso",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Alterar o ângulo de rotação", "angle": "Alterar o ângulo de rotação",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Mude a opacidade item selecionado", "opacity": "Mude a opacidade item selecionado",
"circle_cx": "Cx Mudar círculo de coordenadas", "circle_cx": "Cx Mudar círculo de coordenadas",
"circle_cy": "Círculo Mudança cy coordenar", "circle_cy": "Círculo Mudança cy coordenar",
"circle_r": "Alterar círculo de raio", "circle_r": "Alterar círculo de raio",
"ellipse_cx": "Alterar elipse cx coordenar", "ellipse_cx": "Alterar elipse cx coordenar",
"ellipse_cy": "Elipse Mudança cy coordenar", "ellipse_cy": "Elipse Mudança cy coordenar",
"ellipse_rx": "Raio X Change elipse", "ellipse_rx": "Raio X Change elipse",
"ellipse_ry": "Raio y Change elipse", "ellipse_ry": "Raio y Change elipse",
"line_x1": "Altere a linha de partida coordenada x", "line_x1": "Altere a linha de partida coordenada x",
"line_x2": "Altere a linha está terminando coordenada x", "line_x2": "Altere a linha está terminando coordenada x",
"line_y1": "Mudança na linha de partida coordenada y", "line_y1": "Mudança na linha de partida coordenada y",
"line_y2": "Mudança de linha está terminando coordenada y", "line_y2": "Mudança de linha está terminando coordenada y",
"rect_height": "Alterar altura do retângulo", "rect_height": "Alterar altura do retângulo",
"rect_width": "Alterar a largura retângulo", "rect_width": "Alterar a largura retângulo",
"corner_radius": "Alterar Corner Rectangle Radius", "corner_radius": "Alterar Corner Rectangle Radius",
"image_width": "Alterar a largura da imagem", "image_width": "Alterar a largura da imagem",
"image_height": "Alterar altura da imagem", "image_height": "Alterar altura da imagem",
"image_url": "Alterar URL", "image_url": "Alterar URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Alterar o conteúdo de texto", "text_contents": "Alterar o conteúdo de texto",
"font_family": "Alterar fonte Família", "font_family": "Alterar fonte Família",
"font_size": "Alterar tamanho de letra", "font_size": "Alterar tamanho de letra",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Texto em itálico" "italic": "Texto em itálico"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Mudar a cor de fundo / opacidade", "bkgnd_color_opac": "Mudar a cor de fundo / opacidade",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Ajustar ao conteúdo", "fitToContent": "Ajustar ao conteúdo",
"fit_to_all": "Ajustar a todo o conteúdo", "fit_to_all": "Ajustar a todo o conteúdo",
"fit_to_canvas": "Ajustar à tela", "fit_to_canvas": "Ajustar à tela",
"fit_to_layer_content": "Ajustar o conteúdo da camada de", "fit_to_layer_content": "Ajustar o conteúdo da camada de",
"fit_to_sel": "Ajustar à selecção", "fit_to_sel": "Ajustar à selecção",
"align_relative_to": "Alinhar em relação a ...", "align_relative_to": "Alinhar em relação a ...",
"relativeTo": "em relação ao:", "relativeTo": "em relação ao:",
"page": "Página", "page": "Página",
"largest_object": "maior objeto", "largest_object": "maior objeto",
"selected_objects": "objetos eleitos", "selected_objects": "objetos eleitos",
"smallest_object": "menor objeto", "smallest_object": "menor objeto",
"new_doc": "Nova Imagem", "new_doc": "Nova Imagem",
"open_doc": "Abrir Imagem", "open_doc": "Abrir Imagem",
"export_img": "Export", "export_img": "Export",
"save_doc": "Salvar Imagem", "save_doc": "Salvar Imagem",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Alinhar ao centro", "align_center": "Alinhar ao centro",
"align_left": "Alinhar à Esquerda", "align_left": "Alinhar à Esquerda",
"align_middle": "Alinhar Médio", "align_middle": "Alinhar Médio",
"align_right": "Alinhar à Direita", "align_right": "Alinhar à Direita",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Selecione a ferramenta", "mode_select": "Selecione a ferramenta",
"mode_fhpath": "Ferramenta Lápis", "mode_fhpath": "Ferramenta Lápis",
"mode_line": "Ferramenta Linha", "mode_line": "Ferramenta Linha",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "Elipse", "mode_ellipse": "Elipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Ferramenta de Texto", "mode_text": "Ferramenta de Texto",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Desfazer", "undo": "Desfazer",
"redo": "Refazer", "redo": "Refazer",
"tool_source": "Fonte Editar", "tool_source": "Fonte Editar",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Elementos do Grupo", "group_elements": "Elementos do Grupo",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Elementos Desagrupar", "ungroup": "Elementos Desagrupar",
"docprops": "Propriedades do Documento", "docprops": "Propriedades do Documento",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Salvar", "source_save": "Salvar",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Move camada para baixo", "move_down": "Move camada para baixo",
"new": "New Layer", "new": "New Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Selecione predefinidos:", "select_predefined": "Selecione predefinidos:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,250 +1,250 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "ro", lang: "ro",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Ok", "ok": "Ok",
"cancel": "Anulaţi", "cancel": "Anulaţi",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "ştergere", "key_del": "ştergere",
"key_down": "jos", "key_down": "jos",
"key_up": "sus", "key_up": "sus",
"more_opts": "Mai multe opţiuni", "more_opts": "Mai multe opţiuni",
"url": "URL", "url": "URL",
"width": "Lăţime", "width": "Lăţime",
"height": "Înălţime" "height": "Înălţime"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Arătaţi/ascundeţi mai multe unelte de contur", "toggle_stroke_tools": "Arătaţi/ascundeţi mai multe unelte de contur",
"palette_info": "Faceţi clic pentru a schimba culoarea de umplere, Shift-clic pentru a schimba culoarea de contur", "palette_info": "Faceţi clic pentru a schimba culoarea de umplere, Shift-clic pentru a schimba culoarea de contur",
"zoom_level": "Schimbarea nivelului de zoom", "zoom_level": "Schimbarea nivelului de zoom",
"panel_drag": "Trageţi la stanga/dreapta pentru redimensionare panou lateral" "panel_drag": "Trageţi la stanga/dreapta pentru redimensionare panou lateral"
}, },
properties: { properties: {
"id": "Identificare element", "id": "Identificare element",
"fill_color": "Schimbarea culorii de umplere", "fill_color": "Schimbarea culorii de umplere",
"stroke_color": "Schimbarea culorii de contur", "stroke_color": "Schimbarea culorii de contur",
"stroke_style": "Schimbarea stilului de contur", "stroke_style": "Schimbarea stilului de contur",
"stroke_width": "Schimbarea lăţimii conturului", "stroke_width": "Schimbarea lăţimii conturului",
"pos_x": "Schimbă coordonata X", "pos_x": "Schimbă coordonata X",
"pos_y": "Schimbă coordonata Y", "pos_y": "Schimbă coordonata Y",
"linecap_butt": "Capăt de linie: Butuc", "linecap_butt": "Capăt de linie: Butuc",
"linecap_round": "Capăt de linie: Rotund", "linecap_round": "Capăt de linie: Rotund",
"linecap_square": "Capăt de linie: Pătrat", "linecap_square": "Capăt de linie: Pătrat",
"linejoin_bevel": "Articulaţia liniei: Teşită", "linejoin_bevel": "Articulaţia liniei: Teşită",
"linejoin_miter": "Articulaţia liniei: Unghi ascuţit", "linejoin_miter": "Articulaţia liniei: Unghi ascuţit",
"linejoin_round": "Articulaţia liniei: Rotundă", "linejoin_round": "Articulaţia liniei: Rotundă",
"angle": "Schimbarea unghiul de rotaţie", "angle": "Schimbarea unghiul de rotaţie",
"blur": "Schimbarea valorii estomparii gaussiene", "blur": "Schimbarea valorii estomparii gaussiene",
"opacity": "Schimbarea gradului de opacitate", "opacity": "Schimbarea gradului de opacitate",
"circle_cx": "Schimbarea coordonatei CX a cercului", "circle_cx": "Schimbarea coordonatei CX a cercului",
"circle_cy": "Schimbarea coordonatei CY a cercului", "circle_cy": "Schimbarea coordonatei CY a cercului",
"circle_r": "Schimbarea razei cercului", "circle_r": "Schimbarea razei cercului",
"ellipse_cx": "Schimbarea coordonatei CX a elipsei", "ellipse_cx": "Schimbarea coordonatei CX a elipsei",
"ellipse_cy": "Schimbarea coordonatei CY a elipsei", "ellipse_cy": "Schimbarea coordonatei CY a elipsei",
"ellipse_rx": "Schimbarea razei elipsei X", "ellipse_rx": "Schimbarea razei elipsei X",
"ellipse_ry": "Schimbarea razei elipsei Y", "ellipse_ry": "Schimbarea razei elipsei Y",
"line_x1": "Schimbarea coordonatei x a punctului de start", "line_x1": "Schimbarea coordonatei x a punctului de start",
"line_x2": "Schimbarea coordonatei x a punctului final", "line_x2": "Schimbarea coordonatei x a punctului final",
"line_y1": "Schimbarea coordonatei y a punctului de start", "line_y1": "Schimbarea coordonatei y a punctului de start",
"line_y2": "Schimbare coordonatei y a punctului final", "line_y2": "Schimbare coordonatei y a punctului final",
"rect_height": "Schimbarea înălţimii dreptunghiului", "rect_height": "Schimbarea înălţimii dreptunghiului",
"rect_width": "Schimbarea lăţimii dreptunghiului", "rect_width": "Schimbarea lăţimii dreptunghiului",
"corner_radius": "Schimbarea razei colţului dreptunghiului", "corner_radius": "Schimbarea razei colţului dreptunghiului",
"image_width": "Schimbarea lăţimii imaginii", "image_width": "Schimbarea lăţimii imaginii",
"image_height": "Schimbarea înălţimii imaginii", "image_height": "Schimbarea înălţimii imaginii",
"image_url": "Schimbaţi URL-ul", "image_url": "Schimbaţi URL-ul",
"node_x": "Schimbă coordonata x a punctului", "node_x": "Schimbă coordonata x a punctului",
"node_y": "Schimbă coordonata x a punctului", "node_y": "Schimbă coordonata x a punctului",
"seg_type": "Schimbă tipul de segment", "seg_type": "Schimbă tipul de segment",
"straight_segments": "Drept", "straight_segments": "Drept",
"curve_segments": "Curb", "curve_segments": "Curb",
"text_contents": "Schimbarea conţinutului textului", "text_contents": "Schimbarea conţinutului textului",
"font_family": "Modificare familie de fonturi", "font_family": "Modificare familie de fonturi",
"font_size": "Schimbă dimensiunea fontului", "font_size": "Schimbă dimensiunea fontului",
"bold": "Text Îngroşat", "bold": "Text Îngroşat",
"italic": "Text Înclinat" "italic": "Text Înclinat"
}, },
tools: { tools: {
"main_menu": "Menu Principal", "main_menu": "Menu Principal",
"bkgnd_color_opac": "Schimbare culoare de fundal / opacitate", "bkgnd_color_opac": "Schimbare culoare de fundal / opacitate",
"connector_no_arrow": "Fără săgeată", "connector_no_arrow": "Fără săgeată",
"fitToContent": "Dimensionare la conţinut", "fitToContent": "Dimensionare la conţinut",
"fit_to_all": "Potrivire la tot conţinutul", "fit_to_all": "Potrivire la tot conţinutul",
"fit_to_canvas": "Potrivire la Şevalet", "fit_to_canvas": "Potrivire la Şevalet",
"fit_to_layer_content": "Potrivire la conţinutul stratului", "fit_to_layer_content": "Potrivire la conţinutul stratului",
"fit_to_sel": "Potrivire la selecţie", "fit_to_sel": "Potrivire la selecţie",
"align_relative_to": "Aliniere în raport cu ...", "align_relative_to": "Aliniere în raport cu ...",
"relativeTo": "în raport cu:", "relativeTo": "în raport cu:",
"page": "pagină", "page": "pagină",
"largest_object": "cel mai mare obiect", "largest_object": "cel mai mare obiect",
"selected_objects": "obiectele alese", "selected_objects": "obiectele alese",
"smallest_object": "cel mai mic obiect", "smallest_object": "cel mai mic obiect",
"new_doc": "Imagine nouă", "new_doc": "Imagine nouă",
"open_doc": "Imagine deschisă", "open_doc": "Imagine deschisă",
"export_img": "Export", "export_img": "Export",
"save_doc": "Salvare imagine", "save_doc": "Salvare imagine",
"import_doc": "Importare SVG", "import_doc": "Importare SVG",
"align_to_page": "Aliniere la pagină", "align_to_page": "Aliniere la pagină",
"align_bottom": "Aliniere jos", "align_bottom": "Aliniere jos",
"align_center": "Aliniere la centru", "align_center": "Aliniere la centru",
"align_left": "Aliniere la stânga", "align_left": "Aliniere la stânga",
"align_middle": "Aliniere la mijloc", "align_middle": "Aliniere la mijloc",
"align_right": "Aliniere la dreapta", "align_right": "Aliniere la dreapta",
"align_top": "Aliniere sus", "align_top": "Aliniere sus",
"mode_select": "Unealtă de Selectare", "mode_select": "Unealtă de Selectare",
"mode_fhpath": "Unealtă de Traiectorie", "mode_fhpath": "Unealtă de Traiectorie",
"mode_line": "Unealtă de Linie", "mode_line": "Unealtă de Linie",
"mode_connect": "Conectati doua obiecte", "mode_connect": "Conectati doua obiecte",
"mode_rect": "Unealtă de Dreptunghi", "mode_rect": "Unealtă de Dreptunghi",
"mode_square": "Unealtă de Pătrat", "mode_square": "Unealtă de Pătrat",
"mode_fhrect": "Dreptunghi cu mana liberă", "mode_fhrect": "Dreptunghi cu mana liberă",
"mode_ellipse": "Elipsă", "mode_ellipse": "Elipsă",
"mode_circle": "Cerc", "mode_circle": "Cerc",
"mode_fhellipse": "Elipsă cu mana liberă", "mode_fhellipse": "Elipsă cu mana liberă",
"mode_path": "Unealtă de Traiectorie", "mode_path": "Unealtă de Traiectorie",
"mode_shapelib": "Biblioteca de forme", "mode_shapelib": "Biblioteca de forme",
"mode_text": "Unealtă de Text", "mode_text": "Unealtă de Text",
"mode_image": "Unealtă de Imagine", "mode_image": "Unealtă de Imagine",
"mode_zoom": "Unealtă de Zoom", "mode_zoom": "Unealtă de Zoom",
"mode_eyedropper": "Unealtă de captura Culoare", "mode_eyedropper": "Unealtă de captura Culoare",
"no_embed": "NOTE: Aceasta imagine nu poate fi inglobată. Va depinde de aceasta traiectorie pentru a fi prezentată.", "no_embed": "NOTE: Aceasta imagine nu poate fi inglobată. Va depinde de aceasta traiectorie pentru a fi prezentată.",
"undo": "Anulare", "undo": "Anulare",
"redo": "Refacere", "redo": "Refacere",
"tool_source": "Editare Cod Sursă", "tool_source": "Editare Cod Sursă",
"wireframe_mode": "Mod Schelet", "wireframe_mode": "Mod Schelet",
"toggle_grid": "Arată/ascunde Caroiaj", "toggle_grid": "Arată/ascunde Caroiaj",
"clone": "Clonează Elementul/ele", "clone": "Clonează Elementul/ele",
"del": "Şterge Elementul/ele", "del": "Şterge Elementul/ele",
"group_elements": "Grupare Elemente", "group_elements": "Grupare Elemente",
"make_link": "Crează (hyper)link", "make_link": "Crează (hyper)link",
"set_link_url": "Setează link URL (lăsaţi liber pentru eliminare)", "set_link_url": "Setează link URL (lăsaţi liber pentru eliminare)",
"to_path": "Converteşte in Traiectorie", "to_path": "Converteşte in Traiectorie",
"reorient_path": "Reorientează Traiectoria", "reorient_path": "Reorientează Traiectoria",
"ungroup": "Anulare Grupare Elemente", "ungroup": "Anulare Grupare Elemente",
"docprops": "Proprietăţile Documentului", "docprops": "Proprietăţile Documentului",
"imagelib": "Bibliotecă de Imagini", "imagelib": "Bibliotecă de Imagini",
"move_bottom": "Mutare în jos", "move_bottom": "Mutare în jos",
"move_top": "Mutare în sus", "move_top": "Mutare în sus",
"node_clone": "Clonează Punct", "node_clone": "Clonează Punct",
"node_delete": "Şterge Punct", "node_delete": "Şterge Punct",
"node_link": "Uneşte Punctele de Control", "node_link": "Uneşte Punctele de Control",
"add_subpath": "Adăugaţi sub-traiectorie", "add_subpath": "Adăugaţi sub-traiectorie",
"openclose_path": "Deschide/inchide sub-traiectorie", "openclose_path": "Deschide/inchide sub-traiectorie",
"source_save": "Folosiţi Schimbările", "source_save": "Folosiţi Schimbările",
"cut": "Tăiere", "cut": "Tăiere",
"copy": "Copiere", "copy": "Copiere",
"paste": "Reproducere", "paste": "Reproducere",
"paste_in_place": "Reproducere pe loc", "paste_in_place": "Reproducere pe loc",
"delete": "Ştergere", "delete": "Ştergere",
"group": "Group", "group": "Group",
"move_front": "Pune in faţa", "move_front": "Pune in faţa",
"move_up": "Pune in spate", "move_up": "Pune in spate",
"move_down": "Trimite in faţa", "move_down": "Trimite in faţa",
"move_back": "Trimite in spate" "move_back": "Trimite in spate"
}, },
layers: { layers: {
"layer": "Strat", "layer": "Strat",
"layers": "Straturi", "layers": "Straturi",
"del": "Ştergeţi Strat", "del": "Ştergeţi Strat",
"move_down": "Mutare Strat în Jos", "move_down": "Mutare Strat în Jos",
"new": "Strat Nou", "new": "Strat Nou",
"rename": "Redenumiţi Stratul", "rename": "Redenumiţi Stratul",
"move_up": "Mutare Strat în Sus", "move_up": "Mutare Strat în Sus",
"dupe": "Duplicaţi Stratul", "dupe": "Duplicaţi Stratul",
"merge_down": "Fuzionare in jos", "merge_down": "Fuzionare in jos",
"merge_all": "Fuzionarea tuturor", "merge_all": "Fuzionarea tuturor",
"move_elems_to": "Mută elemente la:", "move_elems_to": "Mută elemente la:",
"move_selected": "Mută elementele selectate pe un alt strat" "move_selected": "Mută elementele selectate pe un alt strat"
}, },
config: { config: {
"image_props": "Proprietăţile Imaginii", "image_props": "Proprietăţile Imaginii",
"doc_title": "Titlul", "doc_title": "Titlul",
"doc_dims": "Dimensiunile Şevaletului", "doc_dims": "Dimensiunile Şevaletului",
"included_images": "Imaginile Incluse", "included_images": "Imaginile Incluse",
"image_opt_embed": "Includeţi Datele (fişiere locale)", "image_opt_embed": "Includeţi Datele (fişiere locale)",
"image_opt_ref": "Foloseşte referinţe la fişiere", "image_opt_ref": "Foloseşte referinţe la fişiere",
"editor_prefs": "Preferinţele Editorului", "editor_prefs": "Preferinţele Editorului",
"icon_size": "Dimensiunile Butoanelor", "icon_size": "Dimensiunile Butoanelor",
"language": "Limba", "language": "Limba",
"background": "Fondul Editorului", "background": "Fondul Editorului",
"editor_img_url": "URL-ul Imaginii", "editor_img_url": "URL-ul Imaginii",
"editor_bg_note": "Notă: Fondul nu va fi salvat cu imaginea.", "editor_bg_note": "Notă: Fondul nu va fi salvat cu imaginea.",
"icon_large": "Mari", "icon_large": "Mari",
"icon_medium": "Medii", "icon_medium": "Medii",
"icon_small": "Mici", "icon_small": "Mici",
"icon_xlarge": "Foarte Mari", "icon_xlarge": "Foarte Mari",
"select_predefined": "Selecţii predefinite:", "select_predefined": "Selecţii predefinite:",
"units_and_rulers": "Unitati si Rigle", "units_and_rulers": "Unitati si Rigle",
"show_rulers": "Arată Riglele", "show_rulers": "Arată Riglele",
"base_unit": "Unitate de baza:", "base_unit": "Unitate de baza:",
"grid": "Caroiaj", "grid": "Caroiaj",
"snapping_onoff": "Fixare on/off", "snapping_onoff": "Fixare on/off",
"snapping_stepsize": "Dimensiunea pasului de fixare:" "snapping_stepsize": "Dimensiunea pasului de fixare:"
}, },
shape_cats: { shape_cats: {
"basic": "De bază", "basic": "De bază",
"object": "Obiecte", "object": "Obiecte",
"symbol": "Simboluri", "symbol": "Simboluri",
"arrow": "Săgeti", "arrow": "Săgeti",
"flowchart": "Schemă Logică", "flowchart": "Schemă Logică",
"animal": "Animale", "animal": "Animale",
"game": "Cărti & şah", "game": "Cărti & şah",
"dialog_balloon": "Baloane de dialog", "dialog_balloon": "Baloane de dialog",
"electronics": "Electronice", "electronics": "Electronice",
"math": "Matematică", "math": "Matematică",
"music": "Muzică", "music": "Muzică",
"misc": "Diverse", "misc": "Diverse",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Selectati o biblioteca de imagini", "select_lib": "Selectati o biblioteca de imagini",
"show_list": "Arătaţi lista bibliotecii", "show_list": "Arătaţi lista bibliotecii",
"import_single": "Importare unică", "import_single": "Importare unică",
"import_multi": "Importare multiplă", "import_multi": "Importare multiplă",
"open": "Deschideţi ca si document nou" "open": "Deschideţi ca si document nou"
}, },
notification: { notification: {
"invalidAttrValGiven": "Valoarea data nu este validă", "invalidAttrValGiven": "Valoarea data nu este validă",
"noContentToFitTo": "Fara conţinut de referinţă", "noContentToFitTo": "Fara conţinut de referinţă",
"dupeLayerName": "Deja exista un strat numit asa!", "dupeLayerName": "Deja exista un strat numit asa!",
"enterUniqueLayerName": "Rog introduceţi un nume unic", "enterUniqueLayerName": "Rog introduceţi un nume unic",
"enterNewLayerName": "Rog introduceţi un nume pentru strat", "enterNewLayerName": "Rog introduceţi un nume pentru strat",
"layerHasThatName": "Statul deja are acest nume", "layerHasThatName": "Statul deja are acest nume",
"QmoveElemsToLayer": "Mutaţi elementele selectate pe stratul '%s'?", "QmoveElemsToLayer": "Mutaţi elementele selectate pe stratul '%s'?",
"QwantToClear": "Doriti să ştergeţi desenul?\nAceasta va sterge si posibilitatea de anulare!", "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!", "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ă?", "QerrorsRevertToSource": "Sunt erori de parsing in sursa SVG.\nRevenire la sursa SVG orginală?",
"QignoreSourceChanges": "Ignoraţi schimbarile la sursa SVG?", "QignoreSourceChanges": "Ignoraţi schimbarile la sursa SVG?",
"featNotSupported": "Funcţie neimplementată", "featNotSupported": "Funcţie neimplementată",
"enterNewImgURL": "Introduceţi noul URL pentru Imagine", "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.", "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.", "saveFromBrowser": "Selectează \"Salvează ca si...\" in browserul dv. pt. a salva aceasta imagine ca si fisier %s.",
"noteTheseIssues": "De asemenea remarcati urmatoarele probleme: ", "noteTheseIssues": "De asemenea remarcati urmatoarele probleme: ",
"unsavedChanges": "Sunt schimbări nesalvate.", "unsavedChanges": "Sunt schimbări nesalvate.",
"enterNewLinkURL": "IntroduAliniere în raport cu ...sceţi noul URL", "enterNewLinkURL": "IntroduAliniere în raport cu ...sceţi noul URL",
"errorLoadingSVG": "Eroare: Nu se pot încărca datele SVG", "errorLoadingSVG": "Eroare: Nu se pot încărca datele SVG",
"URLloadFail": "Nu se poate încărca de la URL", "URLloadFail": "Nu se poate încărca de la URL",
"retrieving": "În preluare \"%s\"..." "retrieving": "În preluare \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "ru", lang: "ru",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Сохранить", "ok": "Сохранить",
"cancel": "Отменить", "cancel": "Отменить",
"key_backspace": "Backspace", "key_backspace": "Backspace",
"key_del": "Delete", "key_del": "Delete",
"key_down": "Вниз", "key_down": "Вниз",
"key_up": "Вверх", "key_up": "Вверх",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Нажмите для изменения цвета заливки, Shift-Click изменить цвета обводки", "palette_info": "Нажмите для изменения цвета заливки, Shift-Click изменить цвета обводки",
"zoom_level": "Изменить масштаб", "zoom_level": "Изменить масштаб",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Изменить цвет заливки", "fill_color": "Изменить цвет заливки",
"stroke_color": "Изменить цвет обводки", "stroke_color": "Изменить цвет обводки",
"stroke_style": "Изменить стиль обводки", "stroke_style": "Изменить стиль обводки",
"stroke_width": "Изменить толщину обводки", "stroke_width": "Изменить толщину обводки",
"pos_x": "Изменить горизонтальный координат", "pos_x": "Изменить горизонтальный координат",
"pos_y": "Изменить вертикальный координат", "pos_y": "Изменить вертикальный координат",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Изменить угол поворота", "angle": "Изменить угол поворота",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Изменить непрозрачность элемента", "opacity": "Изменить непрозрачность элемента",
"circle_cx": "Изменить горизонтальный координат (CX) окружности", "circle_cx": "Изменить горизонтальный координат (CX) окружности",
"circle_cy": "Изменить вертикальный координат (CY) окружности", "circle_cy": "Изменить вертикальный координат (CY) окружности",
"circle_r": "Изменить радиус окружности", "circle_r": "Изменить радиус окружности",
"ellipse_cx": "Изменить горизонтальный координат (CX) эллипса", "ellipse_cx": "Изменить горизонтальный координат (CX) эллипса",
"ellipse_cy": "Изменить вертикальный координат (CY) эллипса", "ellipse_cy": "Изменить вертикальный координат (CY) эллипса",
"ellipse_rx": "Изменить горизонтальный радиус эллипса", "ellipse_rx": "Изменить горизонтальный радиус эллипса",
"ellipse_ry": "Изменить вертикальный радиус эллипса", "ellipse_ry": "Изменить вертикальный радиус эллипса",
"line_x1": "Изменить горизонтальный координат X начальной точки линии", "line_x1": "Изменить горизонтальный координат X начальной точки линии",
"line_x2": "Изменить горизонтальный координат X конечной точки линии", "line_x2": "Изменить горизонтальный координат X конечной точки линии",
"line_y1": "Изменить вертикальный координат Y начальной точки линии", "line_y1": "Изменить вертикальный координат Y начальной точки линии",
"line_y2": "Изменить вертикальный координат Y конечной точки линии", "line_y2": "Изменить вертикальный координат Y конечной точки линии",
"rect_height": "Изменениe высоту прямоугольника", "rect_height": "Изменениe высоту прямоугольника",
"rect_width": "Измененить ширину прямоугольника", "rect_width": "Измененить ширину прямоугольника",
"corner_radius": "Радиус закругленности угла", "corner_radius": "Радиус закругленности угла",
"image_width": "Изменить ширину изображения", "image_width": "Изменить ширину изображения",
"image_height": "Изменить высоту изображения", "image_height": "Изменить высоту изображения",
"image_url": "Изменить URL", "image_url": "Изменить URL",
"node_x": "Изменить горизонтальную координату узла", "node_x": "Изменить горизонтальную координату узла",
"node_y": "Изменить вертикальную координату узла", "node_y": "Изменить вертикальную координату узла",
"seg_type": "Изменить вид", "seg_type": "Изменить вид",
"straight_segments": "Отрезок", "straight_segments": "Отрезок",
"curve_segments": "Сплайн", "curve_segments": "Сплайн",
"text_contents": "Изменить содержание текста", "text_contents": "Изменить содержание текста",
"font_family": "Изменить семейство шрифтов", "font_family": "Изменить семейство шрифтов",
"font_size": "Изменить размер шрифта", "font_size": "Изменить размер шрифта",
"bold": "Жирный", "bold": "Жирный",
"italic": "Курсив" "italic": "Курсив"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Изменить цвет фона или прозрачность", "bkgnd_color_opac": "Изменить цвет фона или прозрачность",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Под размер содержимого", "fitToContent": "Под размер содержимого",
"fit_to_all": "Под размер всех слоев", "fit_to_all": "Под размер всех слоев",
"fit_to_canvas": "Под размер холста", "fit_to_canvas": "Под размер холста",
"fit_to_layer_content": "Под размер содержания слоя", "fit_to_layer_content": "Под размер содержания слоя",
"fit_to_sel": "Под размер выделенного", "fit_to_sel": "Под размер выделенного",
"align_relative_to": "Выровнять по отношению к ...", "align_relative_to": "Выровнять по отношению к ...",
"relativeTo": "По отношению к ", "relativeTo": "По отношению к ",
"page": "страница", "page": "страница",
"largest_object": "Наибольший объект", "largest_object": "Наибольший объект",
"selected_objects": "Выделенные объекты", "selected_objects": "Выделенные объекты",
"smallest_object": "Самый маленький объект", "smallest_object": "Самый маленький объект",
"new_doc": "Создать изображение", "new_doc": "Создать изображение",
"open_doc": "Открыть изображение", "open_doc": "Открыть изображение",
"export_img": "Export", "export_img": "Export",
"save_doc": "Сохранить изображение", "save_doc": "Сохранить изображение",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Выровнять по нижнему краю", "align_bottom": "Выровнять по нижнему краю",
"align_center": "Центрировать по вертикальной оси", "align_center": "Центрировать по вертикальной оси",
"align_left": "По левому краю", "align_left": "По левому краю",
"align_middle": "Центрировать по горизонтальной оси", "align_middle": "Центрировать по горизонтальной оси",
"align_right": "По правому краю", "align_right": "По правому краю",
"align_top": "Выровнять по верхнему краю", "align_top": "Выровнять по верхнему краю",
"mode_select": "Выделить", "mode_select": "Выделить",
"mode_fhpath": "Карандаш", "mode_fhpath": "Карандаш",
"mode_line": "Линия", "mode_line": "Линия",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Прямоугольник от руки", "mode_fhrect": "Прямоугольник от руки",
"mode_ellipse": "Эллипс", "mode_ellipse": "Эллипс",
"mode_circle": "Окружность", "mode_circle": "Окружность",
"mode_fhellipse": "Эллипс от руки", "mode_fhellipse": "Эллипс от руки",
"mode_path": "Контуры", "mode_path": "Контуры",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Текст", "mode_text": "Текст",
"mode_image": "Изображение", "mode_image": "Изображение",
"mode_zoom": "Лупа", "mode_zoom": "Лупа",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Отменить", "undo": "Отменить",
"redo": "Вернуть", "redo": "Вернуть",
"tool_source": "Редактировать исходный код", "tool_source": "Редактировать исходный код",
"wireframe_mode": "Каркас", "wireframe_mode": "Каркас",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Создать группу элементов", "group_elements": "Создать группу элементов",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "В контур", "to_path": "В контур",
"reorient_path": "Изменить ориентацию контура", "reorient_path": "Изменить ориентацию контура",
"ungroup": "Разгруппировать элементы", "ungroup": "Разгруппировать элементы",
"docprops": "Свойства документа", "docprops": "Свойства документа",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Опустить", "move_bottom": "Опустить",
"move_top": "Поднять", "move_top": "Поднять",
"node_clone": "Создать копию узла", "node_clone": "Создать копию узла",
"node_delete": "Удалить узел", "node_delete": "Удалить узел",
"node_link": "Связать узлы", "node_link": "Связать узлы",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Сохранить", "source_save": "Сохранить",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"Delete": "Delete", "Delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Слой", "layer": "Слой",
"layers": "Layers", "layers": "Layers",
"del": "Удалить слой", "del": "Удалить слой",
"move_down": "Опустить слой", "move_down": "Опустить слой",
"new": "Создать слой", "new": "Создать слой",
"rename": "Переименовать Слой", "rename": "Переименовать Слой",
"move_up": "Поднять слой", "move_up": "Поднять слой",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Переместить выделенные элементы:", "move_elems_to": "Переместить выделенные элементы:",
"move_selected": "Переместить выделенные элементы на другой слой" "move_selected": "Переместить выделенные элементы на другой слой"
}, },
config: { config: {
"image_props": "Свойства изображения", "image_props": "Свойства изображения",
"doc_title": "Название", "doc_title": "Название",
"doc_dims": "Размеры холста", "doc_dims": "Размеры холста",
"included_images": "Встроенные изображения", "included_images": "Встроенные изображения",
"image_opt_embed": "Локальные файлы", "image_opt_embed": "Локальные файлы",
"image_opt_ref": "По ссылкам", "image_opt_ref": "По ссылкам",
"editor_prefs": "Параметры", "editor_prefs": "Параметры",
"icon_size": "Размер значков", "icon_size": "Размер значков",
"language": "Язык", "language": "Язык",
"background": "Фон", "background": "Фон",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "(Фон не сохранится вместе с изображением.)", "editor_bg_note": "(Фон не сохранится вместе с изображением.)",
"icon_large": "Большие", "icon_large": "Большие",
"icon_medium": "Средние", "icon_medium": "Средние",
"icon_small": "Малые", "icon_small": "Малые",
"icon_xlarge": "Огромные", "icon_xlarge": "Огромные",
"select_predefined": "Выбирать предопределенный размер", "select_predefined": "Выбирать предопределенный размер",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Некорректное значение аргумента", "invalidAttrValGiven": "Некорректное значение аргумента",
"noContentToFitTo": "Нет содержания, по которому выровнять.", "noContentToFitTo": "Нет содержания, по которому выровнять.",
"dupeLayerName": "Слой с этим именем уже существует.", "dupeLayerName": "Слой с этим именем уже существует.",
"enterUniqueLayerName": "Пожалуйста, введите имя для слоя.", "enterUniqueLayerName": "Пожалуйста, введите имя для слоя.",
"enterNewLayerName": "Пожалуйста, введите новое имя.", "enterNewLayerName": "Пожалуйста, введите новое имя.",
"layerHasThatName": "Слой уже называется этим именем.", "layerHasThatName": "Слой уже называется этим именем.",
"QmoveElemsToLayer": "Переместить выделенные элементы на слой '%s'?", "QmoveElemsToLayer": "Переместить выделенные элементы на слой '%s'?",
"QwantToClear": "Вы хотите очистить?\nИстория действий будет забыта!", "QwantToClear": "Вы хотите очистить?\nИстория действий будет забыта!",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!", "QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "Была проблема при парсинге вашего SVG исходного кода.\nЗаменить его предыдущим SVG кодом?", "QerrorsRevertToSource": "Была проблема при парсинге вашего SVG исходного кода.\nЗаменить его предыдущим SVG кодом?",
"QignoreSourceChanges": "Забыть без сохранения?", "QignoreSourceChanges": "Забыть без сохранения?",
"featNotSupported": "Возможность не реализована", "featNotSupported": "Возможность не реализована",
"enterNewImgURL": "Введите новый URL изображения", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "sk", lang: "sk",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Uložiť", "ok": "Uložiť",
"cancel": "Zrušiť", "cancel": "Zrušiť",
"key_backspace": "Backspace", "key_backspace": "Backspace",
"key_del": "Delete", "key_del": "Delete",
"key_down": "šípka dole", "key_down": "šípka dole",
"key_up": "šípka hore", "key_up": "šípka hore",
"more_opts": "Viac možností", "more_opts": "Viac možností",
"url": "URL", "url": "URL",
"width": "Šírka", "width": "Šírka",
"height": "Výška" "height": "Výška"
}, },
misc: { misc: {
"powered_by": "Beží na" "powered_by": "Beží na"
}, },
ui: { ui: {
"toggle_stroke_tools": "Skryť/ukázať viac nástrojov pre krivku", "toggle_stroke_tools": "Skryť/ukázať viac nástrojov pre krivku",
"palette_info": "Kliknutím zmeníte farbu výplne, so Shiftom zmeníte farbu obrysu", "palette_info": "Kliknutím zmeníte farbu výplne, so Shiftom zmeníte farbu obrysu",
"zoom_level": "Zmena priblíženia", "zoom_level": "Zmena priblíženia",
"panel_drag": "Potiahnutie vľavo/vpravo na zmenu veľkosti bočného panela" "panel_drag": "Potiahnutie vľavo/vpravo na zmenu veľkosti bočného panela"
}, },
properties: { properties: {
"id": "Zmeniť ID elementu", "id": "Zmeniť ID elementu",
"fill_color": "Zmeniť farbu výplne", "fill_color": "Zmeniť farbu výplne",
"stroke_color": "Zmeniť farbu obrysu", "stroke_color": "Zmeniť farbu obrysu",
"stroke_style": "Zmeniť štýl obrysu", "stroke_style": "Zmeniť štýl obrysu",
"stroke_width": "Zmeniť hrúbku obrysu", "stroke_width": "Zmeniť hrúbku obrysu",
"pos_x": "Zmeniť súradnicu X", "pos_x": "Zmeniť súradnicu X",
"pos_y": "Zmeniť súradnicu Y", "pos_y": "Zmeniť súradnicu Y",
"linecap_butt": "Koniec čiary: presný", "linecap_butt": "Koniec čiary: presný",
"linecap_round": "Koniec čiary: zaoblený", "linecap_round": "Koniec čiary: zaoblený",
"linecap_square": "Koniec čiary: so štvorcovým presahom", "linecap_square": "Koniec čiary: so štvorcovým presahom",
"linejoin_bevel": "Napojenie čiar: skosené", "linejoin_bevel": "Napojenie čiar: skosené",
"linejoin_miter": "Napojenie čiar: ostré", "linejoin_miter": "Napojenie čiar: ostré",
"linejoin_round": "Napojenie čiar: oblé", "linejoin_round": "Napojenie čiar: oblé",
"angle": "Zmeniť uhol natočenia", "angle": "Zmeniť uhol natočenia",
"blur": "Zmeniť intenzitu rozmazania", "blur": "Zmeniť intenzitu rozmazania",
"opacity": "Zmeniť prehľadnosť vybraných položiek", "opacity": "Zmeniť prehľadnosť vybraných položiek",
"circle_cx": "Zmeniť súradnicu X stredu kružnice", "circle_cx": "Zmeniť súradnicu X stredu kružnice",
"circle_cy": "Zmeniť súradnicu Y stredu kružnice", "circle_cy": "Zmeniť súradnicu Y stredu kružnice",
"circle_r": "Zmeniť polomer kružnice", "circle_r": "Zmeniť polomer kružnice",
"ellipse_cx": "Zmeniť súradnicu X stredu elipsy", "ellipse_cx": "Zmeniť súradnicu X stredu elipsy",
"ellipse_cy": "Zmeniť súradnicu Y stredu elipsy", "ellipse_cy": "Zmeniť súradnicu Y stredu elipsy",
"ellipse_rx": "Zmeniť polomer X elipsy", "ellipse_rx": "Zmeniť polomer X elipsy",
"ellipse_ry": "Zmeniť polomer Y elipsy", "ellipse_ry": "Zmeniť polomer Y elipsy",
"line_x1": "Zmeniť počiatočnú súradnicu X čiary", "line_x1": "Zmeniť počiatočnú súradnicu X čiary",
"line_x2": "Zmeniť koncovú súradnicu X čiary", "line_x2": "Zmeniť koncovú súradnicu X čiary",
"line_y1": "Zmeniť počiatočnú súradnicu Y čiary", "line_y1": "Zmeniť počiatočnú súradnicu Y čiary",
"line_y2": "Zmeniť koncovú súradnicu Y čiary", "line_y2": "Zmeniť koncovú súradnicu Y čiary",
"rect_height": "Zmena výšku obdĺžnika", "rect_height": "Zmena výšku obdĺžnika",
"rect_width": "Zmeniť šírku obdĺžnika", "rect_width": "Zmeniť šírku obdĺžnika",
"corner_radius": "Zmeniť zaoblenie rohov obdĺžnika", "corner_radius": "Zmeniť zaoblenie rohov obdĺžnika",
"image_width": "Zmeniť šírku obrázka", "image_width": "Zmeniť šírku obrázka",
"image_height": "Zmeniť výšku obrázka", "image_height": "Zmeniť výšku obrázka",
"image_url": "Zmeniť URL", "image_url": "Zmeniť URL",
"node_x": "Zmeniť uzlu súradnicu X", "node_x": "Zmeniť uzlu súradnicu X",
"node_y": "Zmeniť uzlu súradnicu Y", "node_y": "Zmeniť uzlu súradnicu Y",
"seg_type": "Zmeniť typ segmentu", "seg_type": "Zmeniť typ segmentu",
"straight_segments": "Rovný", "straight_segments": "Rovný",
"curve_segments": "Krivka", "curve_segments": "Krivka",
"text_contents": "Zmeniť text", "text_contents": "Zmeniť text",
"font_family": "Zmeniť font", "font_family": "Zmeniť font",
"font_size": "Zmeniť veľkosť písma", "font_size": "Zmeniť veľkosť písma",
"bold": "Tučné", "bold": "Tučné",
"italic": "Kurzíva" "italic": "Kurzíva"
}, },
tools: { tools: {
"main_menu": "Hlavné menu", "main_menu": "Hlavné menu",
"bkgnd_color_opac": "Zmeniť farbu a priehľadnosť pozadia", "bkgnd_color_opac": "Zmeniť farbu a priehľadnosť pozadia",
"connector_no_arrow": "Spojnica bez šípok", "connector_no_arrow": "Spojnica bez šípok",
"fitToContent": "Prispôsobiť obsahu", "fitToContent": "Prispôsobiť obsahu",
"fit_to_all": "Prisposobiť celému obsahu", "fit_to_all": "Prisposobiť celému obsahu",
"fit_to_canvas": "Prispôsobiť stránke", "fit_to_canvas": "Prispôsobiť stránke",
"fit_to_layer_content": "Prispôsobiť obsahu vrstvy", "fit_to_layer_content": "Prispôsobiť obsahu vrstvy",
"fit_to_sel": "Prispôsobiť výberu", "fit_to_sel": "Prispôsobiť výberu",
"align_relative_to": "Zarovnať relatívne k ...", "align_relative_to": "Zarovnať relatívne k ...",
"relativeTo": "vzhľadom k:", "relativeTo": "vzhľadom k:",
"page": "stránke", "page": "stránke",
"largest_object": "najväčšiemu objektu", "largest_object": "najväčšiemu objektu",
"selected_objects": "zvoleným objektom", "selected_objects": "zvoleným objektom",
"smallest_object": "najmenšiemu objektu", "smallest_object": "najmenšiemu objektu",
"new_doc": "Nový obrázok", "new_doc": "Nový obrázok",
"open_doc": "Otvoriť obrázok", "open_doc": "Otvoriť obrázok",
"export_img": "Export", "export_img": "Export",
"save_doc": "Uložiť obrázok", "save_doc": "Uložiť obrázok",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Zarovnať element na stránku", "align_to_page": "Zarovnať element na stránku",
"align_bottom": "Zarovnať dole", "align_bottom": "Zarovnať dole",
"align_center": "Zarovnať na stred", "align_center": "Zarovnať na stred",
"align_left": "Zarovnať doľava", "align_left": "Zarovnať doľava",
"align_middle": "Zarovnať na stred", "align_middle": "Zarovnať na stred",
"align_right": "Zarovnať doprava", "align_right": "Zarovnať doprava",
"align_top": "Zarovnať hore", "align_top": "Zarovnať hore",
"mode_select": "Výber", "mode_select": "Výber",
"mode_fhpath": "Ceruzka", "mode_fhpath": "Ceruzka",
"mode_line": "Čiara", "mode_line": "Čiara",
"mode_connect": "Spojiť dva objekty", "mode_connect": "Spojiť dva objekty",
"mode_rect": "Obdĺžnik", "mode_rect": "Obdĺžnik",
"mode_square": "Štvorec", "mode_square": "Štvorec",
"mode_fhrect": "Obdĺžnik voľnou rukou", "mode_fhrect": "Obdĺžnik voľnou rukou",
"mode_ellipse": "Elipsa", "mode_ellipse": "Elipsa",
"mode_circle": "Kružnica", "mode_circle": "Kružnica",
"mode_fhellipse": "Elipsa voľnou rukou", "mode_fhellipse": "Elipsa voľnou rukou",
"mode_path": "Krivka", "mode_path": "Krivka",
"mode_shapelib": "Knižnica Tvarov", "mode_shapelib": "Knižnica Tvarov",
"mode_text": "Text", "mode_text": "Text",
"mode_image": "Obrázok", "mode_image": "Obrázok",
"mode_zoom": "Priblíženie", "mode_zoom": "Priblíženie",
"mode_eyedropper": "Pipeta", "mode_eyedropper": "Pipeta",
"no_embed": "POZNÁMKA: Tento obrázok nemôže byť vložený. Jeho zobrazenie bude závisieť na jeho ceste", "no_embed": "POZNÁMKA: Tento obrázok nemôže byť vložený. Jeho zobrazenie bude závisieť na jeho ceste",
"undo": "Späť", "undo": "Späť",
"redo": "Opakovať", "redo": "Opakovať",
"tool_source": "Upraviť SVG kód", "tool_source": "Upraviť SVG kód",
"wireframe_mode": "Drôtový model", "wireframe_mode": "Drôtový model",
"toggle_grid": "Zobraz/Skry mriežku", "toggle_grid": "Zobraz/Skry mriežku",
"clone": "Klonuj element(y)", "clone": "Klonuj element(y)",
"del": "Zmaž element(y)", "del": "Zmaž element(y)",
"group_elements": "Zoskupiť elementy", "group_elements": "Zoskupiť elementy",
"make_link": "Naviaž odkaz (hyper)link", "make_link": "Naviaž odkaz (hyper)link",
"set_link_url": "Nastav odkaz URL (ak prázdny, odstráni sa)", "set_link_url": "Nastav odkaz URL (ak prázdny, odstráni sa)",
"to_path": "Previesť na krivku", "to_path": "Previesť na krivku",
"reorient_path": "Zmeniť orientáciu krivky", "reorient_path": "Zmeniť orientáciu krivky",
"ungroup": "Zrušiť skupinu", "ungroup": "Zrušiť skupinu",
"docprops": "Vlastnosti dokumentu", "docprops": "Vlastnosti dokumentu",
"imagelib": "Knižnica obrázkov", "imagelib": "Knižnica obrázkov",
"move_bottom": "Presunúť spodok", "move_bottom": "Presunúť spodok",
"move_top": "Presunúť na vrch", "move_top": "Presunúť na vrch",
"node_clone": "Klonovať uzol", "node_clone": "Klonovať uzol",
"node_delete": "Zmazať uzol", "node_delete": "Zmazať uzol",
"node_link": "Prepojiť kontrolné body", "node_link": "Prepojiť kontrolné body",
"add_subpath": "Pridať ďalšiu súčasť krivky", "add_subpath": "Pridať ďalšiu súčasť krivky",
"openclose_path": "Otvoriť/uzatvoriť súčasť krivky", "openclose_path": "Otvoriť/uzatvoriť súčasť krivky",
"source_save": "Uložiť", "source_save": "Uložiť",
"cut": "Vystrihnutie", "cut": "Vystrihnutie",
"copy": "Kópia", "copy": "Kópia",
"paste": "Vloženie", "paste": "Vloženie",
"paste_in_place": "Vloženie na pôvodnom mieste", "paste_in_place": "Vloženie na pôvodnom mieste",
"delete": "Zmazanie", "delete": "Zmazanie",
"group": "Group", "group": "Group",
"move_front": "Vysuň navrch", "move_front": "Vysuň navrch",
"move_up": "Vysuň vpred", "move_up": "Vysuň vpred",
"move_down": "Zasuň na spodok", "move_down": "Zasuň na spodok",
"move_back": "Zasuň dozadu" "move_back": "Zasuň dozadu"
}, },
layers: { layers: {
"layer": "Vrstva", "layer": "Vrstva",
"layers": "Vrstvy", "layers": "Vrstvy",
"del": "Odstrániť vrstvu", "del": "Odstrániť vrstvu",
"move_down": "Presunúť vrstvu dole", "move_down": "Presunúť vrstvu dole",
"new": "Nová vrstva", "new": "Nová vrstva",
"rename": "Premenovať vrstvu", "rename": "Premenovať vrstvu",
"move_up": "Presunúť vrstvu hore", "move_up": "Presunúť vrstvu hore",
"dupe": "Zduplikovať vrstvu", "dupe": "Zduplikovať vrstvu",
"merge_down": "Zlúčiť s vrstvou dole", "merge_down": "Zlúčiť s vrstvou dole",
"merge_all": "Zlúčiť všetko", "merge_all": "Zlúčiť všetko",
"move_elems_to": "Presunúť elementy do:", "move_elems_to": "Presunúť elementy do:",
"move_selected": "Presunúť vybrané elementy do inej vrstvy" "move_selected": "Presunúť vybrané elementy do inej vrstvy"
}, },
config: { config: {
"image_props": "Vlastnosti obrázka", "image_props": "Vlastnosti obrázka",
"doc_title": "Titulok", "doc_title": "Titulok",
"doc_dims": "Rozmery plátna", "doc_dims": "Rozmery plátna",
"included_images": "Vložené obrázky", "included_images": "Vložené obrázky",
"image_opt_embed": "Vložiť data (lokálne súbory)", "image_opt_embed": "Vložiť data (lokálne súbory)",
"image_opt_ref": "Použiť referenciu na súbor", "image_opt_ref": "Použiť referenciu na súbor",
"editor_prefs": "Vlastnosti editora", "editor_prefs": "Vlastnosti editora",
"icon_size": "Veľkosť ikon", "icon_size": "Veľkosť ikon",
"language": "Jazyk", "language": "Jazyk",
"background": "Zmeniť pozadie", "background": "Zmeniť pozadie",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Poznámka: Pozadie nebude uložené spolu s obrázkom.", "editor_bg_note": "Poznámka: Pozadie nebude uložené spolu s obrázkom.",
"icon_large": "Veľká", "icon_large": "Veľká",
"icon_medium": "Stredná", "icon_medium": "Stredná",
"icon_small": "Malá", "icon_small": "Malá",
"icon_xlarge": "Extra veľká", "icon_xlarge": "Extra veľká",
"select_predefined": "Vybrať preddefinovaný:", "select_predefined": "Vybrať preddefinovaný:",
"units_and_rulers": "Jednotky & Pravítka", "units_and_rulers": "Jednotky & Pravítka",
"show_rulers": "Ukáž pravítka", "show_rulers": "Ukáž pravítka",
"base_unit": "Základné jednotky:", "base_unit": "Základné jednotky:",
"grid": "Mriežka", "grid": "Mriežka",
"snapping_onoff": "Priväzovanie (do mriežky) zap/vyp", "snapping_onoff": "Priväzovanie (do mriežky) zap/vyp",
"snapping_stepsize": "Priväzovanie (do mriežky) veľkosť kroku:", "snapping_stepsize": "Priväzovanie (do mriežky) veľkosť kroku:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Základné", "basic": "Základné",
"object": "Objekty", "object": "Objekty",
"symbol": "Symboly", "symbol": "Symboly",
"arrow": "Šípky", "arrow": "Šípky",
"flowchart": "Vývojové diagramy", "flowchart": "Vývojové diagramy",
"animal": "Zvieratá", "animal": "Zvieratá",
"game": "Karty & Šach", "game": "Karty & Šach",
"dialog_balloon": "Dialogové balóny", "dialog_balloon": "Dialogové balóny",
"electronics": "Elektronika", "electronics": "Elektronika",
"math": "Matematické", "math": "Matematické",
"music": "Hudba", "music": "Hudba",
"misc": "Rôzne", "misc": "Rôzne",
"raphael_1": "raphaeljs.com sada 1", "raphael_1": "raphaeljs.com sada 1",
"raphael_2": "raphaeljs.com sada 2" "raphael_2": "raphaeljs.com sada 2"
}, },
imagelib: { imagelib: {
"select_lib": "Výber knižnice obrázkov", "select_lib": "Výber knižnice obrázkov",
"show_list": "Prehľad knižnice", "show_list": "Prehľad knižnice",
"import_single": "Import jeden", "import_single": "Import jeden",
"import_multi": "Import viacero", "import_multi": "Import viacero",
"open": "Otvoriť ako nový dokument" "open": "Otvoriť ako nový dokument"
}, },
notification: { notification: {
"invalidAttrValGiven": "Neplatná hodnota", "invalidAttrValGiven": "Neplatná hodnota",
"noContentToFitTo": "Vyberte oblasť na prispôsobenie", "noContentToFitTo": "Vyberte oblasť na prispôsobenie",
"dupeLayerName": "Vrstva s daným názvom už existuje!", "dupeLayerName": "Vrstva s daným názvom už existuje!",
"enterUniqueLayerName": "Zadajte jedinečný názov vrstvy", "enterUniqueLayerName": "Zadajte jedinečný názov vrstvy",
"enterNewLayerName": "Zadajte názov vrstvy", "enterNewLayerName": "Zadajte názov vrstvy",
"layerHasThatName": "Vrstva už má zadaný tento názov", "layerHasThatName": "Vrstva už má zadaný tento názov",
"QmoveElemsToLayer": "Presunúť elementy do vrstvy '%s'?", "QmoveElemsToLayer": "Presunúť elementy do vrstvy '%s'?",
"QwantToClear": "Naozaj chcete vymazať kresbu?\n(História bude taktiež vymazaná!)!", "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!", "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?", "QerrorsRevertToSource": "Chyba pri načítaní SVG dokumentu.\nVrátiť povodný SVG dokument?",
"QignoreSourceChanges": "Ignorovať zmeny v SVG dokumente?", "QignoreSourceChanges": "Ignorovať zmeny v SVG dokumente?",
"featNotSupported": "Vlastnosť nie je podporovaná", "featNotSupported": "Vlastnosť nie je podporovaná",
"enterNewImgURL": "Zadajte nové URL obrázka", "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.", "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.", "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: ", "noteTheseIssues": "Môžu sa vyskytnúť nasledujúce problémy: ",
"unsavedChanges": "Sú tu neuložené zmeny.", "unsavedChanges": "Sú tu neuložené zmeny.",
"enterNewLinkURL": "Zadajte nové URL odkazu (hyperlink)", "enterNewLinkURL": "Zadajte nové URL odkazu (hyperlink)",
"errorLoadingSVG": "Chyba: Nedajú sa načítať SVG data", "errorLoadingSVG": "Chyba: Nedajú sa načítať SVG data",
"URLloadFail": "Nemožno čítať z URL", "URLloadFail": "Nemožno čítať z URL",
"retrieving": "Načítavanie \"%s\"..." "retrieving": "Načítavanie \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,250 +1,250 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "sl", lang: "sl",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "V redu", "ok": "V redu",
"cancel": "Prekliči", "cancel": "Prekliči",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "dol", "key_down": "dol",
"key_up": "gor", "key_up": "gor",
"more_opts": "Več možnosti", "more_opts": "Več možnosti",
"url": "URL", "url": "URL",
"width": "širina", "width": "širina",
"height": "višina" "height": "višina"
}, },
misc: { misc: {
"powered_by": "Izdelano z" "powered_by": "Izdelano z"
}, },
ui: { ui: {
"toggle_stroke_tools": "Pokaži/skrij več orodij za oris", "toggle_stroke_tools": "Pokaži/skrij več orodij za oris",
"palette_info": "Kliknite, če želite spremeniti barvo polnila, kliknite+Shift, če želite spremeniti barvo orisa", "palette_info": "Kliknite, če želite spremeniti barvo polnila, kliknite+Shift, če želite spremeniti barvo orisa",
"zoom_level": "Povečava", "zoom_level": "Povečava",
"panel_drag": "Povlecite levo/desno za ogled stranske vrstice" "panel_drag": "Povlecite levo/desno za ogled stranske vrstice"
}, },
properties: { properties: {
"id": "ID elementa", "id": "ID elementa",
"fill_color": "Spremeni barvo polnila", "fill_color": "Spremeni barvo polnila",
"stroke_color": "Spremeni barvo orisa", "stroke_color": "Spremeni barvo orisa",
"stroke_style": "Spremeni slog orisa", "stroke_style": "Spremeni slog orisa",
"stroke_width": "Spreminjanje širino orisa", "stroke_width": "Spreminjanje širino orisa",
"pos_x": "Spremeni X koordinato", "pos_x": "Spremeni X koordinato",
"pos_y": "Spremeni Y koordinato", "pos_y": "Spremeni Y koordinato",
"linecap_butt": "Začetek črte: odsekan", "linecap_butt": "Začetek črte: odsekan",
"linecap_round": "Začetek črte: zaobljen", "linecap_round": "Začetek črte: zaobljen",
"linecap_square": "Začetek črte: kvadraten", "linecap_square": "Začetek črte: kvadraten",
"linejoin_bevel": "Ovinek črte: Odsekan", "linejoin_bevel": "Ovinek črte: Odsekan",
"linejoin_miter": "Linejoin: V kot", "linejoin_miter": "Linejoin: V kot",
"linejoin_round": "Linejoin: Zaobljen", "linejoin_round": "Linejoin: Zaobljen",
"angle": "Spremeni kot zasuka", "angle": "Spremeni kot zasuka",
"blur": "Spremeni zameglitev roba", "blur": "Spremeni zameglitev roba",
"opacity": "Spremeni prosojnost", "opacity": "Spremeni prosojnost",
"circle_cx": "Spremeni CX koordinato", "circle_cx": "Spremeni CX koordinato",
"circle_cy": "Spremeni CY koordinato", "circle_cy": "Spremeni CY koordinato",
"circle_r": "Spremeni polmer kroga", "circle_r": "Spremeni polmer kroga",
"ellipse_cx": "Spremeni CX koordinato", "ellipse_cx": "Spremeni CX koordinato",
"ellipse_cy": "Spremeni CY koordinato", "ellipse_cy": "Spremeni CY koordinato",
"ellipse_rx": "Spremeni X polmer", "ellipse_rx": "Spremeni X polmer",
"ellipse_ry": "Spremeni Y polmer", "ellipse_ry": "Spremeni Y polmer",
"line_x1": "Spremeni začetno X koordinato", "line_x1": "Spremeni začetno X koordinato",
"line_x2": "Spremeni končno X koordinato", "line_x2": "Spremeni končno X koordinato",
"line_y1": "Spremeni začetno Y koordinato", "line_y1": "Spremeni začetno Y koordinato",
"line_y2": "Spremeni končno Y koordinato", "line_y2": "Spremeni končno Y koordinato",
"rect_height": "Spremeni višino pravokotnika", "rect_height": "Spremeni višino pravokotnika",
"rect_width": "Spremeni širino pravokotnika", "rect_width": "Spremeni širino pravokotnika",
"corner_radius": "Spremeni Pravokotnik Corner Radius", "corner_radius": "Spremeni Pravokotnik Corner Radius",
"image_width": "Spremeni širino slike", "image_width": "Spremeni širino slike",
"image_height": "Spremeni višino slike", "image_height": "Spremeni višino slike",
"image_url": "Spremeni URL", "image_url": "Spremeni URL",
"node_x": "Spremeni X koordinato oglišča", "node_x": "Spremeni X koordinato oglišča",
"node_y": "Spremeni Y koordinato oglišča", "node_y": "Spremeni Y koordinato oglišča",
"seg_type": "Spremeni vrsto odseka", "seg_type": "Spremeni vrsto odseka",
"straight_segments": "Raven odsek", "straight_segments": "Raven odsek",
"curve_segments": "Ukrivljen odsek", "curve_segments": "Ukrivljen odsek",
"text_contents": "Spremeni besedilo", "text_contents": "Spremeni besedilo",
"font_family": "Spremeni tip pisave", "font_family": "Spremeni tip pisave",
"font_size": "Spremeni velikost pisave", "font_size": "Spremeni velikost pisave",
"bold": "Krepko", "bold": "Krepko",
"italic": "Poševno" "italic": "Poševno"
}, },
tools: { tools: {
"main_menu": "Glavni meni", "main_menu": "Glavni meni",
"bkgnd_color_opac": "Spremeni barvo / prosojnost", "bkgnd_color_opac": "Spremeni barvo / prosojnost",
"connector_no_arrow": "Brez puščice", "connector_no_arrow": "Brez puščice",
"fitToContent": "Prilagodi vsebini", "fitToContent": "Prilagodi vsebini",
"fit_to_all": "Prilagodi vsemu", "fit_to_all": "Prilagodi vsemu",
"fit_to_canvas": "Prilagodi sliki", "fit_to_canvas": "Prilagodi sliki",
"fit_to_layer_content": "Prilagodi sloju", "fit_to_layer_content": "Prilagodi sloju",
"fit_to_sel": "Prilagodi izboru", "fit_to_sel": "Prilagodi izboru",
"align_relative_to": "Poravnaj glede na ...", "align_relative_to": "Poravnaj glede na ...",
"relativeTo": "glede na:", "relativeTo": "glede na:",
"page": "page", "page": "page",
"largest_object": "največji objekt", "largest_object": "največji objekt",
"selected_objects": "izbrani objekt", "selected_objects": "izbrani objekt",
"smallest_object": "najmanjši objekt", "smallest_object": "najmanjši objekt",
"new_doc": "Nova slika", "new_doc": "Nova slika",
"open_doc": "Odpri sliko", "open_doc": "Odpri sliko",
"export_img": "Izvozi v PNG", "export_img": "Izvozi v PNG",
"save_doc": "Shrani sliko", "save_doc": "Shrani sliko",
"import_doc": "Uvozi SVG", "import_doc": "Uvozi SVG",
"align_to_page": "Poravnaj na stran", "align_to_page": "Poravnaj na stran",
"align_bottom": "Poravnaj na dno", "align_bottom": "Poravnaj na dno",
"align_center": "Poravnaj na sredino", "align_center": "Poravnaj na sredino",
"align_left": "Poravnaj levo", "align_left": "Poravnaj levo",
"align_middle": "Poravnaj na sredino", "align_middle": "Poravnaj na sredino",
"align_right": "Poravnaj desno", "align_right": "Poravnaj desno",
"align_top": "Poravnaj na vrh", "align_top": "Poravnaj na vrh",
"mode_select": "Izberi", "mode_select": "Izberi",
"mode_fhpath": "Svinčnik", "mode_fhpath": "Svinčnik",
"mode_line": "Crta", "mode_line": "Crta",
"mode_connect": "Poveži dva objekta", "mode_connect": "Poveži dva objekta",
"mode_rect": "Pravokotnik", "mode_rect": "Pravokotnik",
"mode_square": "Kvadrat", "mode_square": "Kvadrat",
"mode_fhrect": "Prostoročni pravokotnik", "mode_fhrect": "Prostoročni pravokotnik",
"mode_ellipse": "Elipsa", "mode_ellipse": "Elipsa",
"mode_circle": "Krog", "mode_circle": "Krog",
"mode_fhellipse": "Prostoročna elipsa", "mode_fhellipse": "Prostoročna elipsa",
"mode_path": "Pot", "mode_path": "Pot",
"mode_shapelib": "Knjižnica oblik", "mode_shapelib": "Knjižnica oblik",
"mode_text": "Besedilo", "mode_text": "Besedilo",
"mode_image": "Slika", "mode_image": "Slika",
"mode_zoom": "Povečava", "mode_zoom": "Povečava",
"mode_eyedropper": "Ugotovi barvo", "mode_eyedropper": "Ugotovi barvo",
"no_embed": "OPOMBA: Ta slika ne more biti vključena. It will depend on this path to be displayed", "no_embed": "OPOMBA: Ta slika ne more biti vključena. It will depend on this path to be displayed",
"undo": "Razveljavi", "undo": "Razveljavi",
"redo": "Uveljavi", "redo": "Uveljavi",
"tool_source": "Uredi vir", "tool_source": "Uredi vir",
"wireframe_mode": "Wireframe način", "wireframe_mode": "Wireframe način",
"toggle_grid": "Pokaži/skrij mrežo", "toggle_grid": "Pokaži/skrij mrežo",
"clone": "Kloniraj element(e)", "clone": "Kloniraj element(e)",
"del": "Izbriši element(e)", "del": "Izbriši element(e)",
"group_elements": "Združi element(e)", "group_elements": "Združi element(e)",
"make_link": "Vstavi (hiper)povezavo", "make_link": "Vstavi (hiper)povezavo",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Pretvori v pot", "to_path": "Pretvori v pot",
"reorient_path": "Reorient pot", "reorient_path": "Reorient pot",
"ungroup": "Razdruži elemente", "ungroup": "Razdruži elemente",
"docprops": "Lastnosti dokumenta", "docprops": "Lastnosti dokumenta",
"imagelib": "Knjižnica slik", "imagelib": "Knjižnica slik",
"move_bottom": "Premakni na dno", "move_bottom": "Premakni na dno",
"move_top": "Premakni na vrh", "move_top": "Premakni na vrh",
"node_clone": "Kloniraj oglišče", "node_clone": "Kloniraj oglišče",
"node_delete": "Izbriši oglišče", "node_delete": "Izbriši oglišče",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Shrani", "source_save": "Shrani",
"cut": "Izreži", "cut": "Izreži",
"copy": "Kopiraj", "copy": "Kopiraj",
"paste": "Prilepi", "paste": "Prilepi",
"paste_in_place": "Prilepi na mesto", "paste_in_place": "Prilepi na mesto",
"delete": "Izbriši", "delete": "Izbriši",
"group": "Združi", "group": "Združi",
"move_front": "Postavi v ospredje", "move_front": "Postavi v ospredje",
"move_up": "Pomakni naporej", "move_up": "Pomakni naporej",
"move_down": "Pomakni nazaj", "move_down": "Pomakni nazaj",
"move_back": "Postavi v ozadje" "move_back": "Postavi v ozadje"
}, },
layers: { layers: {
"layer": "Sloj", "layer": "Sloj",
"layers": "Sloji", "layers": "Sloji",
"del": "Izbriši sloj", "del": "Izbriši sloj",
"move_down": "Premakni navzdol", "move_down": "Premakni navzdol",
"new": "Nov sloj", "new": "Nov sloj",
"rename": "Preimenuj sloj", "rename": "Preimenuj sloj",
"move_up": "Premakni navzgor", "move_up": "Premakni navzgor",
"dupe": "Podvoji sloj", "dupe": "Podvoji sloj",
"merge_down": "Združi s spodnjimi", "merge_down": "Združi s spodnjimi",
"merge_all": "Združi vse", "merge_all": "Združi vse",
"move_elems_to": "Premakni elemente v:", "move_elems_to": "Premakni elemente v:",
"move_selected": "Premakne elemente v drug sloj" "move_selected": "Premakne elemente v drug sloj"
}, },
config: { config: {
"image_props": "Lastnosti slike", "image_props": "Lastnosti slike",
"doc_title": "Naslov", "doc_title": "Naslov",
"doc_dims": "Dimenzije slike", "doc_dims": "Dimenzije slike",
"included_images": "Vključene slike", "included_images": "Vključene slike",
"image_opt_embed": "Vključene (local files)", "image_opt_embed": "Vključene (local files)",
"image_opt_ref": "Povezane (Use file reference)", "image_opt_ref": "Povezane (Use file reference)",
"editor_prefs": "Lastnosti urejevalnika", "editor_prefs": "Lastnosti urejevalnika",
"icon_size": "Velikost ikon", "icon_size": "Velikost ikon",
"language": "Jezik", "language": "Jezik",
"background": "Ozadje urejevalnika", "background": "Ozadje urejevalnika",
"editor_img_url": "URL slike", "editor_img_url": "URL slike",
"editor_bg_note": "OPOMBA: Ozdaje ne bo shranjeno s sliko.", "editor_bg_note": "OPOMBA: Ozdaje ne bo shranjeno s sliko.",
"icon_large": "velike", "icon_large": "velike",
"icon_medium": "srednje", "icon_medium": "srednje",
"icon_small": "majhne", "icon_small": "majhne",
"icon_xlarge": "zelo velike", "icon_xlarge": "zelo velike",
"select_predefined": "Izberi prednastavljeno:", "select_predefined": "Izberi prednastavljeno:",
"units_and_rulers": "Enote & ravnilo", "units_and_rulers": "Enote & ravnilo",
"show_rulers": "Pokaži ravnilo", "show_rulers": "Pokaži ravnilo",
"base_unit": "Osnovne enote", "base_unit": "Osnovne enote",
"grid": "Mreža", "grid": "Mreža",
"snapping_onoff": "Pripni na mrežo DA/NE", "snapping_onoff": "Pripni na mrežo DA/NE",
"snapping_stepsize": "Snapping Step-Size:" "snapping_stepsize": "Snapping Step-Size:"
}, },
shape_cats: { shape_cats: {
"basic": "Osnovno", "basic": "Osnovno",
"object": "Objekti", "object": "Objekti",
"symbol": "Simboli", "symbol": "Simboli",
"arrow": "Puščice", "arrow": "Puščice",
"flowchart": "Tok", "flowchart": "Tok",
"animal": "Živali", "animal": "Živali",
"game": "Igralne karte in šah", "game": "Igralne karte in šah",
"dialog_balloon": "Pogovorni balončki", "dialog_balloon": "Pogovorni balončki",
"electronics": "Elektronika", "electronics": "Elektronika",
"math": "Matematika", "math": "Matematika",
"music": "Glasba", "music": "Glasba",
"misc": "Razno", "misc": "Razno",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Izberi knjižnico slik", "select_lib": "Izberi knjižnico slik",
"show_list": "Pokaži seznam", "show_list": "Pokaži seznam",
"import_single": "Uvozi eno", "import_single": "Uvozi eno",
"import_multi": "Uvozi več", "import_multi": "Uvozi več",
"open": "Odpri kot nov dokument" "open": "Odpri kot nov dokument"
}, },
notification: { notification: {
"invalidAttrValGiven": "Napačna vrednost!", "invalidAttrValGiven": "Napačna vrednost!",
"noContentToFitTo": "Ni vsebine za prilagajanje", "noContentToFitTo": "Ni vsebine za prilagajanje",
"dupeLayerName": "Sloj s tem imenom že obstajal!", "dupeLayerName": "Sloj s tem imenom že obstajal!",
"enterUniqueLayerName": "Vnesite edinstveno ime sloja", "enterUniqueLayerName": "Vnesite edinstveno ime sloja",
"enterNewLayerName": "Vnesite ime novega sloja", "enterNewLayerName": "Vnesite ime novega sloja",
"layerHasThatName": "Sloje že ima to ime", "layerHasThatName": "Sloje že ima to ime",
"QmoveElemsToLayer": "Premaknem izbrane elemente v sloj '%s'?", "QmoveElemsToLayer": "Premaknem izbrane elemente v sloj '%s'?",
"QwantToClear": "Ali želite počistiti risbo?\nTo bo izbrisalo tudi zgodovino korakov (ni mogoče razveljaviti)!", "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)!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignoriram spremembe, narejene v SVG kodi?", "QignoreSourceChanges": "Ignoriram spremembe, narejene v SVG kodi?",
"featNotSupported": "Ni podprto", "featNotSupported": "Ni podprto",
"enterNewImgURL": "Vnesite nov URL slike", "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.", "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.", "saveFromBrowser": "Izberite \"Shrani kot ...\" v brskalniku, če želite shraniti kot %s.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "Obstajajo neshranjene spremembe.", "unsavedChanges": "Obstajajo neshranjene spremembe.",
"enterNewLinkURL": "Vnesite novo URL povezavo", "enterNewLinkURL": "Vnesite novo URL povezavo",
"errorLoadingSVG": "Napaka: Ne morem naložiti SVG podatkov", "errorLoadingSVG": "Napaka: Ne morem naložiti SVG podatkov",
"URLloadFail": "Ne morem naložiti z URL", "URLloadFail": "Ne morem naložiti z URL",
"retrieving": "Pridobivanje \"%s\"..." "retrieving": "Pridobivanje \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "sq", lang: "sq",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Ruaj", "ok": "Ruaj",
"cancel": "Anulo", "cancel": "Anulo",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Klikoni për të ndryshuar mbushur me ngjyra, shift-klikoni për të ndryshuar ngjyrën pash", "palette_info": "Klikoni për të ndryshuar mbushur me ngjyra, shift-klikoni për të ndryshuar ngjyrën pash",
"zoom_level": "Ndryshimi zoom nivel", "zoom_level": "Ndryshimi zoom nivel",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Ndryshimi mbush color", "fill_color": "Ndryshimi mbush color",
"stroke_color": "Change color pash", "stroke_color": "Change color pash",
"stroke_style": "Ndryshimi dash goditje stil", "stroke_style": "Ndryshimi dash goditje stil",
"stroke_width": "Ndryshimi goditje width", "stroke_width": "Ndryshimi goditje width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Kënd Ndryshimi rrotullim", "angle": "Kënd Ndryshimi rrotullim",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Ndryshimi zgjedhur errësirë item", "opacity": "Ndryshimi zgjedhur errësirë item",
"circle_cx": "Cx rrethi Ndryshimi i bashkërenduar", "circle_cx": "Cx rrethi Ndryshimi i bashkërenduar",
"circle_cy": "Ndryshimi i rrethit cy koordinuar", "circle_cy": "Ndryshimi i rrethit cy koordinuar",
"circle_r": "Rreze rreth Ndryshimi i", "circle_r": "Rreze rreth Ndryshimi i",
"ellipse_cx": "Ndryshimi elips e cx koordinuar", "ellipse_cx": "Ndryshimi elips e cx koordinuar",
"ellipse_cy": "Elips cy Ndryshimi i bashkërenduar", "ellipse_cy": "Elips cy Ndryshimi i bashkërenduar",
"ellipse_rx": "Rreze x elips Ndryshimi i", "ellipse_rx": "Rreze x elips Ndryshimi i",
"ellipse_ry": "Radiusi y elips ndërroj", "ellipse_ry": "Radiusi y elips ndërroj",
"line_x1": "Shkarko Ndryshimi që fillon x koordinuar", "line_x1": "Shkarko Ndryshimi që fillon x koordinuar",
"line_x2": "Linjë Ndryshimi i fund x koordinuar", "line_x2": "Linjë Ndryshimi i fund x koordinuar",
"line_y1": "Shkarko Ndryshimi që fillon y koordinuar", "line_y1": "Shkarko Ndryshimi që fillon y koordinuar",
"line_y2": "Shkarko Ndryshimi i dhënë fund y koordinuar", "line_y2": "Shkarko Ndryshimi i dhënë fund y koordinuar",
"rect_height": "Height Ndryshimi drejtkëndësh", "rect_height": "Height Ndryshimi drejtkëndësh",
"rect_width": "Width Ndryshimi drejtkëndësh", "rect_width": "Width Ndryshimi drejtkëndësh",
"corner_radius": "Ndryshimi Rectangle Corner Radius", "corner_radius": "Ndryshimi Rectangle Corner Radius",
"image_width": "Ndryshimi image width", "image_width": "Ndryshimi image width",
"image_height": "Height të ndryshuar imazhin", "image_height": "Height të ndryshuar imazhin",
"image_url": "Ndrysho URL", "image_url": "Ndrysho URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Text contents Ndryshimi", "text_contents": "Text contents Ndryshimi",
"font_family": "Ndryshimi Font Family", "font_family": "Ndryshimi Font Family",
"font_size": "Ndryshimi Font Size", "font_size": "Ndryshimi Font Size",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Change color background / patejdukshmëri", "bkgnd_color_opac": "Change color background / patejdukshmëri",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Fit për të gjithë përmbajtjen", "fit_to_all": "Fit për të gjithë përmbajtjen",
"fit_to_canvas": "Fit në kanavacë", "fit_to_canvas": "Fit në kanavacë",
"fit_to_layer_content": "Shtresë Fit to content", "fit_to_layer_content": "Shtresë Fit to content",
"fit_to_sel": "Fit to Selection", "fit_to_sel": "Fit to Selection",
"align_relative_to": "Vendose në lidhje me ...", "align_relative_to": "Vendose në lidhje me ...",
"relativeTo": "lidhje me:", "relativeTo": "lidhje me:",
"page": "faqe", "page": "faqe",
"largest_object": "madh objekt", "largest_object": "madh objekt",
"selected_objects": "objektet e zgjedhur", "selected_objects": "objektet e zgjedhur",
"smallest_object": "objektit më të vogël", "smallest_object": "objektit më të vogël",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Image Hapur", "open_doc": "Image Hapur",
"export_img": "Export", "export_img": "Export",
"save_doc": "Image Ruaj", "save_doc": "Image Ruaj",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Align Center", "align_center": "Align Center",
"align_left": "Align Left", "align_left": "Align Left",
"align_middle": "Align Mesme", "align_middle": "Align Mesme",
"align_right": "Align Right", "align_right": "Align Right",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Zgjidhni Tool", "mode_select": "Zgjidhni Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Lëndë Hand Rectangle", "mode_fhrect": "Lëndë Hand Rectangle",
"mode_ellipse": "Elips", "mode_ellipse": "Elips",
"mode_circle": "Rrethi", "mode_circle": "Rrethi",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Undo", "undo": "Undo",
"redo": "Redo", "redo": "Redo",
"tool_source": "Burimi Edit", "tool_source": "Burimi Edit",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Elementet e Grupit", "group_elements": "Elementet e Grupit",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Elemente Ungroup", "ungroup": "Elemente Ungroup",
"docprops": "Dokumenti Prona", "docprops": "Dokumenti Prona",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Ruaj", "source_save": "Ruaj",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Move Down Layer", "move_down": "Move Down Layer",
"new": "Re Shtresa", "new": "Re Shtresa",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Move Up Layer", "move_up": "Move Up Layer",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Zgjidhni paracaktuara:", "select_predefined": "Zgjidhni paracaktuara:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "sr", lang: "sr",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Сачувати", "ok": "Сачувати",
"cancel": "Откажи", "cancel": "Откажи",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Кликните да бисте променили боју попуне, Схифт-кликните да промените боју удар", "palette_info": "Кликните да бисте променили боју попуне, Схифт-кликните да промените боју удар",
"zoom_level": "Промените ниво зумирања", "zoom_level": "Промените ниво зумирања",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Промена боје попуне", "fill_color": "Промена боје попуне",
"stroke_color": "Промена боје удар", "stroke_color": "Промена боје удар",
"stroke_style": "Промена ход Дасх стил", "stroke_style": "Промена ход Дасх стил",
"stroke_width": "Промена удара ширина", "stroke_width": "Промена удара ширина",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Промени ротације Угао", "angle": "Промени ротације Угао",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Промена изабране ставке непрозирност", "opacity": "Промена изабране ставке непрозирност",
"circle_cx": "Промена круг&#39;с ЦКС координатни", "circle_cx": "Промена круг&#39;с ЦКС координатни",
"circle_cy": "Промена круг&#39;с ср координатни", "circle_cy": "Промена круг&#39;с ср координатни",
"circle_r": "Промена круга је полупречник", "circle_r": "Промена круга је полупречник",
"ellipse_cx": "Промена елипса ЦКС&#39;с координатни", "ellipse_cx": "Промена елипса ЦКС&#39;с координатни",
"ellipse_cy": "Промена елипса&#39;с ср координатни", "ellipse_cy": "Промена елипса&#39;с ср координатни",
"ellipse_rx": "Промена елипса&#39;с Кс радијуса", "ellipse_rx": "Промена елипса&#39;с Кс радијуса",
"ellipse_ry": "Промена елипса је радијус Ы", "ellipse_ry": "Промена елипса је радијус Ы",
"line_x1": "Промена линија Стартни кс координата", "line_x1": "Промена линија Стартни кс координата",
"line_x2": "Промена линија је завршетак кс координата", "line_x2": "Промена линија је завршетак кс координата",
"line_y1": "Промена линија у координатни почетак Ы", "line_y1": "Промена линија у координатни почетак Ы",
"line_y2": "Промена линија је Ы координата се завршава", "line_y2": "Промена линија је Ы координата се завршава",
"rect_height": "Промени правоугаоник висина", "rect_height": "Промени правоугаоник висина",
"rect_width": "Промени правоугаоник ширине", "rect_width": "Промени правоугаоник ширине",
"corner_radius": "Промена правоугаоник Кутак радијуса", "corner_radius": "Промена правоугаоник Кутак радијуса",
"image_width": "Промени слику ширине", "image_width": "Промени слику ширине",
"image_height": "Промени слику висине", "image_height": "Промени слику висине",
"image_url": "Промените УРЛ адресу", "image_url": "Промените УРЛ адресу",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Промена садржаја текстуалне", "text_contents": "Промена садржаја текстуалне",
"font_family": "Цханге фонт породицу", "font_family": "Цханге фонт породицу",
"font_size": "Цханге фонт сизе", "font_size": "Цханге фонт сизе",
"bold": "Подебљан текст", "bold": "Подебљан текст",
"italic": "Италиц текст" "italic": "Италиц текст"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Промена боје позадине / непрозирност", "bkgnd_color_opac": "Промена боје позадине / непрозирност",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Стане на садржај", "fitToContent": "Стане на садржај",
"fit_to_all": "Уклопи у сав садржај", "fit_to_all": "Уклопи у сав садржај",
"fit_to_canvas": "Стане на платну", "fit_to_canvas": "Стане на платну",
"fit_to_layer_content": "Уклопи у слоју садржај", "fit_to_layer_content": "Уклопи у слоју садржај",
"fit_to_sel": "Уклопи у избор", "fit_to_sel": "Уклопи у избор",
"align_relative_to": "Алигн у односу на ...", "align_relative_to": "Алигн у односу на ...",
"relativeTo": "у односу на:", "relativeTo": "у односу на:",
"page": "страна", "page": "страна",
"largest_object": "Највећи објекат", "largest_object": "Највећи објекат",
"selected_objects": "изабраних објеката", "selected_objects": "изабраних објеката",
"smallest_object": "Најмањи објекат", "smallest_object": "Најмањи објекат",
"new_doc": "Нова слика", "new_doc": "Нова слика",
"open_doc": "Отвори слике", "open_doc": "Отвори слике",
"export_img": "Export", "export_img": "Export",
"save_doc": "Сачувај слика", "save_doc": "Сачувај слика",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Поравнај доле", "align_bottom": "Поравнај доле",
"align_center": "Поравнај по центру", "align_center": "Поравнај по центру",
"align_left": "Поравнај лево", "align_left": "Поравнај лево",
"align_middle": "Алигн Средњи", "align_middle": "Алигн Средњи",
"align_right": "Поравнај десно", "align_right": "Поравнај десно",
"align_top": "Поравнајте врх", "align_top": "Поравнајте врх",
"mode_select": "Изаберите алатку", "mode_select": "Изаберите алатку",
"mode_fhpath": "Алатка оловка", "mode_fhpath": "Алатка оловка",
"mode_line": "Линија Алат", "mode_line": "Линија Алат",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Фрее-Ручни правоугаоник", "mode_fhrect": "Фрее-Ручни правоугаоник",
"mode_ellipse": "Елипса", "mode_ellipse": "Елипса",
"mode_circle": "Круг", "mode_circle": "Круг",
"mode_fhellipse": "Фрее-Ручни Елипса", "mode_fhellipse": "Фрее-Ручни Елипса",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Текст Алат", "mode_text": "Текст Алат",
"mode_image": "Алатка за слике", "mode_image": "Алатка за слике",
"mode_zoom": "Алатка за зумирање", "mode_zoom": "Алатка за зумирање",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Поништи", "undo": "Поништи",
"redo": "Редо", "redo": "Редо",
"tool_source": "Уреди Извор", "tool_source": "Уреди Извор",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Група Елементи", "group_elements": "Група Елементи",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Разгрупирање Елементи", "ungroup": "Разгрупирање Елементи",
"docprops": "Особине документа", "docprops": "Особине документа",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Премести на доле", "move_bottom": "Премести на доле",
"move_top": "Премести на врх", "move_top": "Премести на врх",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Сачувати", "source_save": "Сачувати",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Избриши слој", "del": "Избриши слој",
"move_down": "Помери слој доле", "move_down": "Помери слој доле",
"new": "Нови слој", "new": "Нови слој",
"rename": "Преименуј слој", "rename": "Преименуј слој",
"move_up": "Помери слој Горе", "move_up": "Помери слој Горе",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Изаберите унапред дефинисани:", "select_predefined": "Изаберите унапред дефинисани:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "sv", lang: "sv",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Spara", "ok": "Spara",
"cancel": "Avbryt", "cancel": "Avbryt",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Klicka för att ändra fyllningsfärg, shift-klicka för att ändra färgar", "palette_info": "Klicka för att ändra fyllningsfärg, shift-klicka för att ändra färgar",
"zoom_level": "Ändra zoomnivå", "zoom_level": "Ändra zoomnivå",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Ändra fyllningsfärg", "fill_color": "Ändra fyllningsfärg",
"stroke_color": "Ändra färgar", "stroke_color": "Ändra färgar",
"stroke_style": "Ändra stroke Dash stil", "stroke_style": "Ändra stroke Dash stil",
"stroke_width": "Ändra stroke bredd", "stroke_width": "Ändra stroke bredd",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Ändra rotationsvinkel", "angle": "Ändra rotationsvinkel",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Ändra markerat objekt opacitet", "opacity": "Ändra markerat objekt opacitet",
"circle_cx": "Ändra cirkeln cx samordna", "circle_cx": "Ändra cirkeln cx samordna",
"circle_cy": "Ändra cirkeln samordna cy", "circle_cy": "Ändra cirkeln samordna cy",
"circle_r": "Ändra cirkelns radie", "circle_r": "Ändra cirkelns radie",
"ellipse_cx": "Ändra ellips&#39;s cx samordna", "ellipse_cx": "Ändra ellips&#39;s cx samordna",
"ellipse_cy": "Ändra ellips&#39;s samordna cy", "ellipse_cy": "Ändra ellips&#39;s samordna cy",
"ellipse_rx": "Ändra ellips&#39;s x radie", "ellipse_rx": "Ändra ellips&#39;s x radie",
"ellipse_ry": "Ändra ellips&#39;s y radie", "ellipse_ry": "Ändra ellips&#39;s y radie",
"line_x1": "Ändra Lines startar x samordna", "line_x1": "Ändra Lines startar x samordna",
"line_x2": "Ändra Lines slutar x samordna", "line_x2": "Ändra Lines slutar x samordna",
"line_y1": "Ändra Lines startar Y-koordinat", "line_y1": "Ändra Lines startar Y-koordinat",
"line_y2": "Ändra Lines slutar Y-koordinat", "line_y2": "Ändra Lines slutar Y-koordinat",
"rect_height": "Ändra rektangel höjd", "rect_height": "Ändra rektangel höjd",
"rect_width": "Ändra rektangel bredd", "rect_width": "Ändra rektangel bredd",
"corner_radius": "Ändra rektangel hörnradie", "corner_radius": "Ändra rektangel hörnradie",
"image_width": "Ändra bild bredd", "image_width": "Ändra bild bredd",
"image_height": "Ändra bildhöjd", "image_height": "Ändra bildhöjd",
"image_url": "Ändra URL", "image_url": "Ändra URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Ändra textinnehållet", "text_contents": "Ändra textinnehållet",
"font_family": "Ändra Typsnitt", "font_family": "Ändra Typsnitt",
"font_size": "Ändra textstorlek", "font_size": "Ändra textstorlek",
"bold": "Fet text", "bold": "Fet text",
"italic": "Kursiv text" "italic": "Kursiv text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Ändra bakgrundsfärg / opacitet", "bkgnd_color_opac": "Ändra bakgrundsfärg / opacitet",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Passar till allt innehåll", "fit_to_all": "Passar till allt innehåll",
"fit_to_canvas": "Anpassa till duk", "fit_to_canvas": "Anpassa till duk",
"fit_to_layer_content": "Anpassa till lager innehåll", "fit_to_layer_content": "Anpassa till lager innehåll",
"fit_to_sel": "Anpassa till val", "fit_to_sel": "Anpassa till val",
"align_relative_to": "Justera förhållande till ...", "align_relative_to": "Justera förhållande till ...",
"relativeTo": "jämfört:", "relativeTo": "jämfört:",
"page": "sida", "page": "sida",
"largest_object": "största objekt", "largest_object": "största objekt",
"selected_objects": "valda objekt", "selected_objects": "valda objekt",
"smallest_object": "minsta objektet", "smallest_object": "minsta objektet",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Öppna bild", "open_doc": "Öppna bild",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Centrera", "align_center": "Centrera",
"align_left": "Vänsterjustera", "align_left": "Vänsterjustera",
"align_middle": "Justera Middle", "align_middle": "Justera Middle",
"align_right": "Högerjustera", "align_right": "Högerjustera",
"align_top": "Justera Top", "align_top": "Justera Top",
"mode_select": "Markeringsverktyget", "mode_select": "Markeringsverktyget",
"mode_fhpath": "Pennverktyget", "mode_fhpath": "Pennverktyget",
"mode_line": "Linjeverktyg", "mode_line": "Linjeverktyg",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Fri hand rektangel", "mode_fhrect": "Fri hand rektangel",
"mode_ellipse": "Ellips", "mode_ellipse": "Ellips",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Fri hand Ellipse", "mode_fhellipse": "Fri hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Textverktyg", "mode_text": "Textverktyg",
"mode_image": "Bildverktyg", "mode_image": "Bildverktyg",
"mode_zoom": "Zoomverktyget", "mode_zoom": "Zoomverktyget",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Ångra", "undo": "Ångra",
"redo": "Redo", "redo": "Redo",
"tool_source": "Redigera källa", "tool_source": "Redigera källa",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Group Elements", "group_elements": "Group Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Dela Elements", "ungroup": "Dela Elements",
"docprops": "Dokumentegenskaper", "docprops": "Dokumentegenskaper",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Flytta till början", "move_top": "Flytta till början",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Spara", "source_save": "Spara",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Radera Layer", "del": "Radera Layer",
"move_down": "Flytta Layer Down", "move_down": "Flytta Layer Down",
"new": "New Layer", "new": "New Layer",
"rename": "Byt namn på Layer", "rename": "Byt namn på Layer",
"move_up": "Flytta Layer Up", "move_up": "Flytta Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Välj fördefinierad:", "select_predefined": "Välj fördefinierad:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "sw", lang: "sw",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Okoa", "ok": "Okoa",
"cancel": "Cancel", "cancel": "Cancel",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Click kubadili kujaza color, skiftarbete-click kubadili kiharusi color", "palette_info": "Click kubadili kujaza color, skiftarbete-click kubadili kiharusi color",
"zoom_level": "Change zoom ngazi", "zoom_level": "Change zoom ngazi",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Change kujaza Michezo", "fill_color": "Change kujaza Michezo",
"stroke_color": "Change kiharusi Michezo", "stroke_color": "Change kiharusi Michezo",
"stroke_style": "Change kiharusi dash style", "stroke_style": "Change kiharusi dash style",
"stroke_width": "Change kiharusi width", "stroke_width": "Change kiharusi width",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Change mzunguko vinkel", "angle": "Change mzunguko vinkel",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Change selected opacity punkt", "opacity": "Change selected opacity punkt",
"circle_cx": "Change mduara&#39;s CX kuratibu", "circle_cx": "Change mduara&#39;s CX kuratibu",
"circle_cy": "Change mduara&#39;s cy kuratibu", "circle_cy": "Change mduara&#39;s cy kuratibu",
"circle_r": "Change mduara&#39;s Radius", "circle_r": "Change mduara&#39;s Radius",
"ellipse_cx": "Change ellipse s CX kuratibu", "ellipse_cx": "Change ellipse s CX kuratibu",
"ellipse_cy": "Change ellipse s cy kuratibu", "ellipse_cy": "Change ellipse s cy kuratibu",
"ellipse_rx": "Change ellipse s x Radius", "ellipse_rx": "Change ellipse s x Radius",
"ellipse_ry": "Change ellipse&#39;s y Radius", "ellipse_ry": "Change ellipse&#39;s y Radius",
"line_x1": "Change Mpya&#39;s mapya x kuratibu", "line_x1": "Change Mpya&#39;s mapya x kuratibu",
"line_x2": "Change Mpya&#39;s kuishia x kuratibu", "line_x2": "Change Mpya&#39;s kuishia x kuratibu",
"line_y1": "Change Mpya&#39;s mapya y kuratibu", "line_y1": "Change Mpya&#39;s mapya y kuratibu",
"line_y2": "Change Mpya&#39;s kuishia y kuratibu", "line_y2": "Change Mpya&#39;s kuishia y kuratibu",
"rect_height": "Change Mstatili height", "rect_height": "Change Mstatili height",
"rect_width": "Change Mstatili width", "rect_width": "Change Mstatili width",
"corner_radius": "Change Mstatili Corner Radius", "corner_radius": "Change Mstatili Corner Radius",
"image_width": "Change image width", "image_width": "Change image width",
"image_height": "Change image urefu", "image_height": "Change image urefu",
"image_url": "Change URL", "image_url": "Change URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Change Nakala contents", "text_contents": "Change Nakala contents",
"font_family": "Change font Family", "font_family": "Change font Family",
"font_size": "Change font Size", "font_size": "Change font Size",
"bold": "Bold Nakala", "bold": "Bold Nakala",
"italic": "Italiki Nakala" "italic": "Italiki Nakala"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Change background color / opacity", "bkgnd_color_opac": "Change background color / opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Waliopo Content", "fitToContent": "Waliopo Content",
"fit_to_all": "Waliopo all content", "fit_to_all": "Waliopo all content",
"fit_to_canvas": "Wanaofaa Canvas", "fit_to_canvas": "Wanaofaa Canvas",
"fit_to_layer_content": "Waliopo safu content", "fit_to_layer_content": "Waliopo safu content",
"fit_to_sel": "Waliopo uteuzi", "fit_to_sel": "Waliopo uteuzi",
"align_relative_to": "Align jamaa na ...", "align_relative_to": "Align jamaa na ...",
"relativeTo": "relativa att:", "relativeTo": "relativa att:",
"page": "Page", "page": "Page",
"largest_object": "ukubwa object", "largest_object": "ukubwa object",
"selected_objects": "waliochaguliwa vitu", "selected_objects": "waliochaguliwa vitu",
"smallest_object": "minsta object", "smallest_object": "minsta object",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Open SVG", "open_doc": "Open SVG",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Align Center", "align_center": "Align Center",
"align_left": "Align Left", "align_left": "Align Left",
"align_middle": "Kati align", "align_middle": "Kati align",
"align_right": "Align Right", "align_right": "Align Right",
"align_top": "Align Juu", "align_top": "Align Juu",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Penseli Tool", "mode_fhpath": "Penseli Tool",
"mode_line": "Mpya Tool", "mode_line": "Mpya Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Nakala Tool", "mode_text": "Nakala Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Tengua", "undo": "Tengua",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Lugha", "tool_source": "Edit Lugha",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Kikundi Elements", "group_elements": "Kikundi Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Kuhama Bottom", "move_bottom": "Kuhama Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Save", "source_save": "Save",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"new": "Mpya Layer", "new": "Mpya Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Select predefined:", "select_predefined": "Select predefined:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "test", lang: "test",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "OK", "ok": "OK",
"cancel": "Cancel", "cancel": "Cancel",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Click to change fill color, shift-click to change stroke color", "palette_info": "Click to change fill color, shift-click to change stroke color",
"zoom_level": "Change zoom level", "zoom_level": "Change zoom level",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Change fill color", "fill_color": "Change fill color",
"stroke_color": "Change stroke color", "stroke_color": "Change stroke color",
"stroke_style": "Change stroke dash style", "stroke_style": "Change stroke dash style",
"stroke_width": "Change stroke width by 1, shift-click to change by 0.1", "stroke_width": "Change stroke width by 1, shift-click to change by 0.1",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Change rotation angle", "angle": "Change rotation angle",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Change selected item opacity", "opacity": "Change selected item opacity",
"circle_cx": "Change circle's cx coordinate", "circle_cx": "Change circle's cx coordinate",
"circle_cy": "Change circle's cy coordinate", "circle_cy": "Change circle's cy coordinate",
"circle_r": "Change circle's radius", "circle_r": "Change circle's radius",
"ellipse_cx": "Change ellipse's cx coordinate", "ellipse_cx": "Change ellipse's cx coordinate",
"ellipse_cy": "Change ellipse's cy coordinate", "ellipse_cy": "Change ellipse's cy coordinate",
"ellipse_rx": "Change ellipse's x radius", "ellipse_rx": "Change ellipse's x radius",
"ellipse_ry": "Change ellipse's y radius", "ellipse_ry": "Change ellipse's y radius",
"line_x1": "Change line's starting x coordinate", "line_x1": "Change line's starting x coordinate",
"line_x2": "Change line's ending x coordinate", "line_x2": "Change line's ending x coordinate",
"line_y1": "Change line's starting y coordinate", "line_y1": "Change line's starting y coordinate",
"line_y2": "Change line's ending y coordinate", "line_y2": "Change line's ending y coordinate",
"rect_height": "Change rectangle height", "rect_height": "Change rectangle height",
"rect_width": "Change rectangle width", "rect_width": "Change rectangle width",
"corner_radius": "Change Rectangle Corner Radius", "corner_radius": "Change Rectangle Corner Radius",
"image_width": "Change image width", "image_width": "Change image width",
"image_height": "Change image height", "image_height": "Change image height",
"image_url": "Change URL", "image_url": "Change URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Change text contents", "text_contents": "Change text contents",
"font_family": "Change Font Family", "font_family": "Change Font Family",
"font_size": "Change Font Size", "font_size": "Change Font Size",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Change background color/opacity", "bkgnd_color_opac": "Change background color/opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Fit to all content", "fit_to_all": "Fit to all content",
"fit_to_canvas": "Fit to canvas", "fit_to_canvas": "Fit to canvas",
"fit_to_layer_content": "Fit to layer content", "fit_to_layer_content": "Fit to layer content",
"fit_to_sel": "Fit to selection", "fit_to_sel": "Fit to selection",
"align_relative_to": "Align relative to ...", "align_relative_to": "Align relative to ...",
"relativeTo": "relative to:", "relativeTo": "relative to:",
"page": "page", "page": "page",
"largest_object": "largest object", "largest_object": "largest object",
"selected_objects": "selected objects", "selected_objects": "selected objects",
"smallest_object": "smallest object", "smallest_object": "smallest object",
"new_doc": "New Image", "new_doc": "New Image",
"open_doc": "Open SVG", "open_doc": "Open SVG",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Align Center", "align_center": "Align Center",
"align_left": "Align Left", "align_left": "Align Left",
"align_middle": "Align Middle", "align_middle": "Align Middle",
"align_right": "Align Right", "align_right": "Align Right",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Select Tool", "mode_select": "Select Tool",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-Hand Rectangle", "mode_fhrect": "Free-Hand Rectangle",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Free-Hand Ellipse", "mode_fhellipse": "Free-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Undo", "undo": "Undo",
"redo": "Redo", "redo": "Redo",
"tool_source": "Edit Source", "tool_source": "Edit Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Group Elements", "group_elements": "Group Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Move to Bottom", "move_bottom": "Move to Bottom",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Apply Changes", "source_save": "Apply Changes",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"new": "New Layer", "new": "New Layer",
"rename": "Rename Layer", "rename": "Rename Layer",
"move_up": "Move Layer Up", "move_up": "Move Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Select predefined:", "select_predefined": "Select predefined:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer \"%s\"?", "QmoveElemsToLayer": "Move selected elements to layer \"%s\"?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "th", lang: "th",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "บันทึก", "ok": "บันทึก",
"cancel": "ยกเลิก", "cancel": "ยกเลิก",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "คลิกเพื่อเปลี่ยนใส่สีกะคลิกเปลี่ยนสีจังหวะ", "palette_info": "คลิกเพื่อเปลี่ยนใส่สีกะคลิกเปลี่ยนสีจังหวะ",
"zoom_level": "เปลี่ยนระดับการซูม", "zoom_level": "เปลี่ยนระดับการซูม",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "เปลี่ยนใส่สี", "fill_color": "เปลี่ยนใส่สี",
"stroke_color": "สีจังหวะเปลี่ยน", "stroke_color": "สีจังหวะเปลี่ยน",
"stroke_style": "รีบเปลี่ยนสไตล์จังหวะ", "stroke_style": "รีบเปลี่ยนสไตล์จังหวะ",
"stroke_width": "ความกว้างจังหวะเปลี่ยน", "stroke_width": "ความกว้างจังหวะเปลี่ยน",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "มุมหมุนเปลี่ยน", "angle": "มุมหมุนเปลี่ยน",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "เปลี่ยนความทึบเลือกรายการ", "opacity": "เปลี่ยนความทึบเลือกรายการ",
"circle_cx": "Cx วงกลมเปลี่ยนของพิกัด", "circle_cx": "Cx วงกลมเปลี่ยนของพิกัด",
"circle_cy": "วงกลมเปลี่ยนเป็น cy ประสานงาน", "circle_cy": "วงกลมเปลี่ยนเป็น cy ประสานงาน",
"circle_r": "รัศมีวงกลมเปลี่ยนเป็น", "circle_r": "รัศมีวงกลมเปลี่ยนเป็น",
"ellipse_cx": "เปลี่ยน ellipse ของ cx ประสานงาน", "ellipse_cx": "เปลี่ยน ellipse ของ cx ประสานงาน",
"ellipse_cy": "Ellipse เปลี่ยนของ cy ประสานงาน", "ellipse_cy": "Ellipse เปลี่ยนของ cy ประสานงาน",
"ellipse_rx": "Ellipse เปลี่ยนของรัศมี x", "ellipse_rx": "Ellipse เปลี่ยนของรัศมี x",
"ellipse_ry": "Ellipse เปลี่ยนของรัศมี y", "ellipse_ry": "Ellipse เปลี่ยนของรัศมี y",
"line_x1": "สายเปลี่ยนเป็นเริ่มต้น x พิกัด", "line_x1": "สายเปลี่ยนเป็นเริ่มต้น x พิกัด",
"line_x2": "สายเปลี่ยนเป็นสิ้นสุด x พิกัด", "line_x2": "สายเปลี่ยนเป็นสิ้นสุด x พิกัด",
"line_y1": "สายเปลี่ยนเป็นเริ่มต้น y พิกัด", "line_y1": "สายเปลี่ยนเป็นเริ่มต้น y พิกัด",
"line_y2": "สายเปลี่ยนเป็นสิ้นสุด y พิกัด", "line_y2": "สายเปลี่ยนเป็นสิ้นสุด y พิกัด",
"rect_height": "ความสูงสี่เหลี่ยมผืนผ้าเปลี่ยน", "rect_height": "ความสูงสี่เหลี่ยมผืนผ้าเปลี่ยน",
"rect_width": "ความกว้างสี่เหลี่ยมผืนผ้าเปลี่ยน", "rect_width": "ความกว้างสี่เหลี่ยมผืนผ้าเปลี่ยน",
"corner_radius": "รัศมีเปลี่ยนสี่เหลี่ยมผืนผ้า Corner", "corner_radius": "รัศมีเปลี่ยนสี่เหลี่ยมผืนผ้า Corner",
"image_width": "ความกว้างเปลี่ยนรูปภาพ", "image_width": "ความกว้างเปลี่ยนรูปภาพ",
"image_height": "ความสูงเปลี่ยนรูปภาพ", "image_height": "ความสูงเปลี่ยนรูปภาพ",
"image_url": "URL เปลี่ยน", "image_url": "URL เปลี่ยน",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "เปลี่ยนเนื้อหาข้อความ", "text_contents": "เปลี่ยนเนื้อหาข้อความ",
"font_family": "ครอบครัว Change Font", "font_family": "ครอบครัว Change Font",
"font_size": "เปลี่ยนขนาดตัวอักษร", "font_size": "เปลี่ยนขนาดตัวอักษร",
"bold": "ข้อความตัวหนา", "bold": "ข้อความตัวหนา",
"italic": "ข้อความตัวเอียง" "italic": "ข้อความตัวเอียง"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "สีพื้นหลังเปลี่ยน / ความทึบ", "bkgnd_color_opac": "สีพื้นหลังเปลี่ยน / ความทึบ",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "พอดีกับเนื้อหาทั้งหมด", "fit_to_all": "พอดีกับเนื้อหาทั้งหมด",
"fit_to_canvas": "เหมาะสมในการผ้าใบ", "fit_to_canvas": "เหมาะสมในการผ้าใบ",
"fit_to_layer_content": "พอดีเนื้อหาชั้นที่", "fit_to_layer_content": "พอดีเนื้อหาชั้นที่",
"fit_to_sel": "เหมาะสมในการเลือก", "fit_to_sel": "เหมาะสมในการเลือก",
"align_relative_to": "จัดชิดเทียบกับ ...", "align_relative_to": "จัดชิดเทียบกับ ...",
"relativeTo": "เทียบกับ:", "relativeTo": "เทียบกับ:",
"page": "หน้า", "page": "หน้า",
"largest_object": "ที่ใหญ่ที่สุดในวัตถุ", "largest_object": "ที่ใหญ่ที่สุดในวัตถุ",
"selected_objects": "วัตถุเลือกตั้ง", "selected_objects": "วัตถุเลือกตั้ง",
"smallest_object": "วัตถุที่เล็กที่สุด", "smallest_object": "วัตถุที่เล็กที่สุด",
"new_doc": "รูปภาพใหม่", "new_doc": "รูปภาพใหม่",
"open_doc": "ภาพเปิด", "open_doc": "ภาพเปิด",
"export_img": "Export", "export_img": "Export",
"save_doc": "บันทึกรูปภาพ", "save_doc": "บันทึกรูปภาพ",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "ด้านล่างชิด", "align_bottom": "ด้านล่างชิด",
"align_center": "จัดแนวกึ่งกลาง", "align_center": "จัดแนวกึ่งกลาง",
"align_left": "จัดชิดซ้าย", "align_left": "จัดชิดซ้าย",
"align_middle": "กลางชิด", "align_middle": "กลางชิด",
"align_right": "จัดชิดขวา", "align_right": "จัดชิดขวา",
"align_top": "ด้านบนชิด", "align_top": "ด้านบนชิด",
"mode_select": "เครื่องมือเลือก", "mode_select": "เครื่องมือเลือก",
"mode_fhpath": "เครื่องมือดินสอ", "mode_fhpath": "เครื่องมือดินสอ",
"mode_line": "เครื่องมือ Line", "mode_line": "เครื่องมือ Line",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "สี่เหลี่ยมผืนผ้า Free-Hand", "mode_fhrect": "สี่เหลี่ยมผืนผ้า Free-Hand",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Ellipse Free-Hand", "mode_fhellipse": "Ellipse Free-Hand",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "เครื่องมือ Text", "mode_text": "เครื่องมือ Text",
"mode_image": "เครื่องมือ Image", "mode_image": "เครื่องมือ Image",
"mode_zoom": "เครื่องมือซูม", "mode_zoom": "เครื่องมือซูม",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "เลิก", "undo": "เลิก",
"redo": "ทำซ้ำ", "redo": "ทำซ้ำ",
"tool_source": "แหล่งที่มาแก้ไข", "tool_source": "แหล่งที่มาแก้ไข",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "องค์ประกอบของกลุ่ม", "group_elements": "องค์ประกอบของกลุ่ม",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "องค์ประกอบ Ungroup", "ungroup": "องค์ประกอบ Ungroup",
"docprops": "คุณสมบัติของเอกสาร", "docprops": "คุณสมบัติของเอกสาร",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "ย้ายไปด้านล่าง", "move_bottom": "ย้ายไปด้านล่าง",
"move_top": "ย้ายไปด้านบน", "move_top": "ย้ายไปด้านบน",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "บันทึก", "source_save": "บันทึก",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "ย้าย Layer ลง", "move_down": "ย้าย Layer ลง",
"new": "Layer ใหม่", "new": "Layer ใหม่",
"rename": "Layer เปลี่ยนชื่อ", "rename": "Layer เปลี่ยนชื่อ",
"move_up": "ย้าย Layer Up", "move_up": "ย้าย Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "เลือกที่กำหนดไว้ล่วงหน้า:", "select_predefined": "เลือกที่กำหนดไว้ล่วงหน้า:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "tl", lang: "tl",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "I-save", "ok": "I-save",
"cancel": "I-cancel", "cancel": "I-cancel",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "I-click upang baguhin ang punan ang kulay, paglilipat-click upang baguhin ang paghampas ng kulay", "palette_info": "I-click upang baguhin ang punan ang kulay, paglilipat-click upang baguhin ang paghampas ng kulay",
"zoom_level": "Baguhin ang antas ng zoom", "zoom_level": "Baguhin ang antas ng zoom",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Baguhin ang punuin ng kulay", "fill_color": "Baguhin ang punuin ng kulay",
"stroke_color": "Baguhin ang kulay ng paghampas", "stroke_color": "Baguhin ang kulay ng paghampas",
"stroke_style": "Baguhin ang stroke pagsugod estilo", "stroke_style": "Baguhin ang stroke pagsugod estilo",
"stroke_width": "Baguhin ang stroke lapad", "stroke_width": "Baguhin ang stroke lapad",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Baguhin ang pag-ikot anggulo", "angle": "Baguhin ang pag-ikot anggulo",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Palitan ang mga napiling bagay kalabuan", "opacity": "Palitan ang mga napiling bagay kalabuan",
"circle_cx": "Cx Baguhin ang bilog&#39;s coordinate", "circle_cx": "Cx Baguhin ang bilog&#39;s coordinate",
"circle_cy": "Baguhin ang bilog&#39;s cy coordinate", "circle_cy": "Baguhin ang bilog&#39;s cy coordinate",
"circle_r": "Baguhin ang radius ng bilog", "circle_r": "Baguhin ang radius ng bilog",
"ellipse_cx": "Baguhin ang tambilugan&#39;s cx-ugma", "ellipse_cx": "Baguhin ang tambilugan&#39;s cx-ugma",
"ellipse_cy": "Baguhin ang tambilugan&#39;s cy coordinate", "ellipse_cy": "Baguhin ang tambilugan&#39;s cy coordinate",
"ellipse_rx": "X radius Baguhin ang tambilugan&#39;s", "ellipse_rx": "X radius Baguhin ang tambilugan&#39;s",
"ellipse_ry": "Y radius Baguhin ang tambilugan&#39;s", "ellipse_ry": "Y radius Baguhin ang tambilugan&#39;s",
"line_x1": "Baguhin ang linya ng simula x coordinate", "line_x1": "Baguhin ang linya ng simula x coordinate",
"line_x2": "Baguhin ang linya ay nagtatapos x coordinate", "line_x2": "Baguhin ang linya ay nagtatapos x coordinate",
"line_y1": "Baguhin ang linya ng simula y coordinate", "line_y1": "Baguhin ang linya ng simula y coordinate",
"line_y2": "Baguhin ang linya ay nagtatapos y coordinate", "line_y2": "Baguhin ang linya ay nagtatapos y coordinate",
"rect_height": "Baguhin ang rektanggulo taas", "rect_height": "Baguhin ang rektanggulo taas",
"rect_width": "Baguhin ang rektanggulo lapad", "rect_width": "Baguhin ang rektanggulo lapad",
"corner_radius": "Baguhin ang Parihaba Corner Radius", "corner_radius": "Baguhin ang Parihaba Corner Radius",
"image_width": "Baguhin ang lapad ng imahe", "image_width": "Baguhin ang lapad ng imahe",
"image_height": "Baguhin ang taas ng imahe", "image_height": "Baguhin ang taas ng imahe",
"image_url": "Baguhin ang URL", "image_url": "Baguhin ang URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Baguhin ang mga nilalaman ng teksto", "text_contents": "Baguhin ang mga nilalaman ng teksto",
"font_family": "Baguhin ang Pamilya ng Font", "font_family": "Baguhin ang Pamilya ng Font",
"font_size": "Baguhin ang Laki ng Font", "font_size": "Baguhin ang Laki ng Font",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Baguhin ang kulay ng background / kalabuan", "bkgnd_color_opac": "Baguhin ang kulay ng background / kalabuan",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Pagkasyahin sa Nilalaman", "fitToContent": "Pagkasyahin sa Nilalaman",
"fit_to_all": "Pagkasyahin sa lahat ng mga nilalaman", "fit_to_all": "Pagkasyahin sa lahat ng mga nilalaman",
"fit_to_canvas": "Pagkasyahin sa tolda", "fit_to_canvas": "Pagkasyahin sa tolda",
"fit_to_layer_content": "Pagkasyahin sa layer nilalaman", "fit_to_layer_content": "Pagkasyahin sa layer nilalaman",
"fit_to_sel": "Pagkasyahin sa pagpili", "fit_to_sel": "Pagkasyahin sa pagpili",
"align_relative_to": "Pantayin sa kamag-anak sa ...", "align_relative_to": "Pantayin sa kamag-anak sa ...",
"relativeTo": "kamag-anak sa:", "relativeTo": "kamag-anak sa:",
"page": "pahina", "page": "pahina",
"largest_object": "pinakamalaking bagay", "largest_object": "pinakamalaking bagay",
"selected_objects": "inihalal na mga bagay", "selected_objects": "inihalal na mga bagay",
"smallest_object": "pinakamaliit na bagay", "smallest_object": "pinakamaliit na bagay",
"new_doc": "Bagong Imahe", "new_doc": "Bagong Imahe",
"open_doc": "Buksan ang Image", "open_doc": "Buksan ang Image",
"export_img": "Export", "export_img": "Export",
"save_doc": "I-save ang Image", "save_doc": "I-save ang Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Pantayin sa Ibaba", "align_bottom": "Pantayin sa Ibaba",
"align_center": "Pantayin sa Gitna", "align_center": "Pantayin sa Gitna",
"align_left": "Pantayin ang Kaliwa", "align_left": "Pantayin ang Kaliwa",
"align_middle": "Pantayin sa Gitnang", "align_middle": "Pantayin sa Gitnang",
"align_right": "Pantayin sa Kanan", "align_right": "Pantayin sa Kanan",
"align_top": "Pantayin Top", "align_top": "Pantayin Top",
"mode_select": "Piliin ang Tool", "mode_select": "Piliin ang Tool",
"mode_fhpath": "Kasangkapan ng lapis", "mode_fhpath": "Kasangkapan ng lapis",
"mode_line": "Line Kasangkapan", "mode_line": "Line Kasangkapan",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Libreng-kamay Parihaba", "mode_fhrect": "Libreng-kamay Parihaba",
"mode_ellipse": "Tambilugan", "mode_ellipse": "Tambilugan",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Libreng-kamay tambilugan", "mode_fhellipse": "Libreng-kamay tambilugan",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Kasangkapan", "mode_text": "Text Kasangkapan",
"mode_image": "Image Kasangkapan", "mode_image": "Image Kasangkapan",
"mode_zoom": "Mag-zoom Kasangkapan", "mode_zoom": "Mag-zoom Kasangkapan",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Bawiin", "undo": "Bawiin",
"redo": "Gawin muli", "redo": "Gawin muli",
"tool_source": "I-edit ang Source", "tool_source": "I-edit ang Source",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Group Sangkap", "group_elements": "Group Sangkap",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Sangkap", "ungroup": "Ungroup Sangkap",
"docprops": "Document Katangian", "docprops": "Document Katangian",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Ilipat sa Ibaba", "move_bottom": "Ilipat sa Ibaba",
"move_top": "Ilipat sa Tuktok", "move_top": "Ilipat sa Tuktok",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "I-save", "source_save": "I-save",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Tanggalin Layer", "del": "Tanggalin Layer",
"move_down": "Ilipat Layer Down", "move_down": "Ilipat Layer Down",
"new": "Bagong Layer", "new": "Bagong Layer",
"rename": "Palitan ang pangalan ng Layer", "rename": "Palitan ang pangalan ng Layer",
"move_up": "Ilipat Layer Up", "move_up": "Ilipat Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Piliin ang paunang-natukoy na:", "select_predefined": "Piliin ang paunang-natukoy na:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "tr", lang: "tr",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Kaydetmek", "ok": "Kaydetmek",
"cancel": "Iptal", "cancel": "Iptal",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Tıklatın renk, vardiya dolgu zamanlı rengini değiştirmek için tıklayın değiştirmek için", "palette_info": "Tıklatın renk, vardiya dolgu zamanlı rengini değiştirmek için tıklayın değiştirmek için",
"zoom_level": "Yakınlaştırma düzeyini değiştirebilirsiniz", "zoom_level": "Yakınlaştırma düzeyini değiştirebilirsiniz",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Renk değiştirmek doldurmak", "fill_color": "Renk değiştirmek doldurmak",
"stroke_color": "Değiştirmek inme renk", "stroke_color": "Değiştirmek inme renk",
"stroke_style": "Değiştirmek inme çizgi stili", "stroke_style": "Değiştirmek inme çizgi stili",
"stroke_width": "Değiştirmek vuruş genişliği", "stroke_width": "Değiştirmek vuruş genişliği",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Değiştirmek dönme açısı", "angle": "Değiştirmek dönme açısı",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Değiştirmek öğe opacity seçilmiş", "opacity": "Değiştirmek öğe opacity seçilmiş",
"circle_cx": "Değiştirmek daire&#39;s cx koordine", "circle_cx": "Değiştirmek daire&#39;s cx koordine",
"circle_cy": "Değiştirmek daire cy koordine&#39;s", "circle_cy": "Değiştirmek daire cy koordine&#39;s",
"circle_r": "Değiştirmek daire yarıçapı", "circle_r": "Değiştirmek daire yarıçapı",
"ellipse_cx": "&#39;s Koordine cx elips Girişi", "ellipse_cx": "&#39;s Koordine cx elips Girişi",
"ellipse_cy": "Değiştirmek elips cy koordine&#39;s", "ellipse_cy": "Değiştirmek elips cy koordine&#39;s",
"ellipse_rx": "Değiştirmek elips&#39;s x yarıçapı", "ellipse_rx": "Değiştirmek elips&#39;s x yarıçapı",
"ellipse_ry": "Değiştirmek elips Y yarıçapı", "ellipse_ry": "Değiştirmek elips Y yarıçapı",
"line_x1": "Değiştirmek hattı&#39;s koordine x başlangıç", "line_x1": "Değiştirmek hattı&#39;s koordine x başlangıç",
"line_x2": "Değiştirmek hattı&#39;s koordine x biten", "line_x2": "Değiştirmek hattı&#39;s koordine x biten",
"line_y1": "Değiştirmek hattı y başlangıç&#39;s koordine", "line_y1": "Değiştirmek hattı y başlangıç&#39;s koordine",
"line_y2": "Değiştirmek hattı y biten&#39;s koordine", "line_y2": "Değiştirmek hattı y biten&#39;s koordine",
"rect_height": "Değiştirmek dikdörtgen yüksekliği", "rect_height": "Değiştirmek dikdörtgen yüksekliği",
"rect_width": "Değiştirmek dikdörtgen genişliği", "rect_width": "Değiştirmek dikdörtgen genişliği",
"corner_radius": "Değiştirmek Dikdörtgen Köşe Yarıçap", "corner_radius": "Değiştirmek Dikdörtgen Köşe Yarıçap",
"image_width": "Değiştirmek görüntü genişliği", "image_width": "Değiştirmek görüntü genişliği",
"image_height": "Değiştirmek görüntü yüksekliği", "image_height": "Değiştirmek görüntü yüksekliği",
"image_url": "Değiştirmek URL", "image_url": "Değiştirmek URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Değiştirmek metin içeriği", "text_contents": "Değiştirmek metin içeriği",
"font_family": "Font değiştir Aile", "font_family": "Font değiştir Aile",
"font_size": "Change font size", "font_size": "Change font size",
"bold": "Kalın Yazı", "bold": "Kalın Yazı",
"italic": "Italik yazı" "italic": "Italik yazı"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Arka plan rengini değiştirmek / opacity", "bkgnd_color_opac": "Arka plan rengini değiştirmek / opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Fit to Content", "fitToContent": "Fit to Content",
"fit_to_all": "Fit tüm içerik için", "fit_to_all": "Fit tüm içerik için",
"fit_to_canvas": "Fit tuvaline", "fit_to_canvas": "Fit tuvaline",
"fit_to_layer_content": "Sığacak şekilde katman içerik", "fit_to_layer_content": "Sığacak şekilde katman içerik",
"fit_to_sel": "Fit seçimine", "fit_to_sel": "Fit seçimine",
"align_relative_to": "Align göre ...", "align_relative_to": "Align göre ...",
"relativeTo": "göreli:", "relativeTo": "göreli:",
"page": "sayfa", "page": "sayfa",
"largest_object": "en büyük nesne", "largest_object": "en büyük nesne",
"selected_objects": "seçilen nesneleri", "selected_objects": "seçilen nesneleri",
"smallest_object": "küçük nesne", "smallest_object": "küçük nesne",
"new_doc": "Yeni Resim", "new_doc": "Yeni Resim",
"open_doc": "Aç Resim", "open_doc": "Aç Resim",
"export_img": "Export", "export_img": "Export",
"save_doc": "Görüntüyü Kaydet", "save_doc": "Görüntüyü Kaydet",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Ortala", "align_center": "Ortala",
"align_left": "Sola", "align_left": "Sola",
"align_middle": "Align Orta", "align_middle": "Align Orta",
"align_right": "Sağa Hizala", "align_right": "Sağa Hizala",
"align_top": "Align Top", "align_top": "Align Top",
"mode_select": "Seçim aracı", "mode_select": "Seçim aracı",
"mode_fhpath": "Kalem Aracı", "mode_fhpath": "Kalem Aracı",
"mode_line": "Line Aracı", "mode_line": "Line Aracı",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-El Dikdörtgen", "mode_fhrect": "Free-El Dikdörtgen",
"mode_ellipse": "Elips", "mode_ellipse": "Elips",
"mode_circle": "Daire", "mode_circle": "Daire",
"mode_fhellipse": "Free-El Elips", "mode_fhellipse": "Free-El Elips",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Metin Aracı", "mode_text": "Metin Aracı",
"mode_image": "Resim Aracı", "mode_image": "Resim Aracı",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Geri", "undo": "Geri",
"redo": "Redo", "redo": "Redo",
"tool_source": "Değiştir Kaynak", "tool_source": "Değiştir Kaynak",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Grup Elemanları", "group_elements": "Grup Elemanları",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Çöz Elemanları", "ungroup": "Çöz Elemanları",
"docprops": "Belge Özellikleri", "docprops": "Belge Özellikleri",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Altına gider", "move_bottom": "Altına gider",
"move_top": "Üste taşı", "move_top": "Üste taşı",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Kaydetmek", "source_save": "Kaydetmek",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Delete Layer", "del": "Delete Layer",
"move_down": "Katman Aşağı Taşı", "move_down": "Katman Aşağı Taşı",
"new": "Yeni Katman", "new": "Yeni Katman",
"rename": "Rename Katman", "rename": "Rename Katman",
"move_up": "Up Katman Taşı", "move_up": "Up Katman Taşı",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Seçin önceden tanımlanmış:", "select_predefined": "Seçin önceden tanımlanmış:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "uk", lang: "uk",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Зберегти", "ok": "Зберегти",
"cancel": "Скасування", "cancel": "Скасування",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Натисніть для зміни кольору заливки, Shift-Click змінити обвід", "palette_info": "Натисніть для зміни кольору заливки, Shift-Click змінити обвід",
"zoom_level": "Зміна масштабу", "zoom_level": "Зміна масштабу",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Зміна кольору заливки", "fill_color": "Зміна кольору заливки",
"stroke_color": "Зміна кольору інсульт", "stroke_color": "Зміна кольору інсульт",
"stroke_style": "Зміна стилю інсульт тире", "stroke_style": "Зміна стилю інсульт тире",
"stroke_width": "Зміни ширина штриха", "stroke_width": "Зміни ширина штриха",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Зміна кута повороту", "angle": "Зміна кута повороту",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Зміна вибраного пункту непрозорості", "opacity": "Зміна вибраного пункту непрозорості",
"circle_cx": "CX зміну кола координата", "circle_cx": "CX зміну кола координата",
"circle_cy": "Зміни гуртка CY координати", "circle_cy": "Зміни гуртка CY координати",
"circle_r": "Зміна кола&#39;s радіус", "circle_r": "Зміна кола&#39;s радіус",
"ellipse_cx": "Зміни еліпса CX координати", "ellipse_cx": "Зміни еліпса CX координати",
"ellipse_cy": "Зміни еліпса CY координати", "ellipse_cy": "Зміни еліпса CY координати",
"ellipse_rx": "Х Зміни еліпса радіусом", "ellipse_rx": "Х Зміни еліпса радіусом",
"ellipse_ry": "Зміни у еліпса радіусом", "ellipse_ry": "Зміни у еліпса радіусом",
"line_x1": "Зміни починає координати лінія х", "line_x1": "Зміни починає координати лінія х",
"line_x2": "Зміни за період, що закінчився лінія координати х", "line_x2": "Зміни за період, що закінчився лінія координати х",
"line_y1": "Зміни лінія починає Y координата", "line_y1": "Зміни лінія починає Y координата",
"line_y2": "Зміна за період, що закінчився лінія Y координата", "line_y2": "Зміна за період, що закінчився лінія Y координата",
"rect_height": "Зміни прямокутник висотою", "rect_height": "Зміни прямокутник висотою",
"rect_width": "Зміна ширини прямокутника", "rect_width": "Зміна ширини прямокутника",
"corner_radius": "Зміни прямокутник Corner Radius", "corner_radius": "Зміни прямокутник Corner Radius",
"image_width": "Зміни ширина зображення", "image_width": "Зміни ширина зображення",
"image_height": "Зміна висоти зображення", "image_height": "Зміна висоти зображення",
"image_url": "Змінити URL", "image_url": "Змінити URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Зміна змісту тексту", "text_contents": "Зміна змісту тексту",
"font_family": "Зміни Сімейство шрифтів", "font_family": "Зміни Сімейство шрифтів",
"font_size": "Змінити розмір шрифту", "font_size": "Змінити розмір шрифту",
"bold": "Товстий текст", "bold": "Товстий текст",
"italic": "Похилий текст" "italic": "Похилий текст"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Зміна кольору тла / непрозорість", "bkgnd_color_opac": "Зміна кольору тла / непрозорість",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "За розміром змісту", "fitToContent": "За розміром змісту",
"fit_to_all": "За розміром весь вміст", "fit_to_all": "За розміром весь вміст",
"fit_to_canvas": "Розмір полотна", "fit_to_canvas": "Розмір полотна",
"fit_to_layer_content": "За розміром шар змісту", "fit_to_layer_content": "За розміром шар змісту",
"fit_to_sel": "Вибір розміру", "fit_to_sel": "Вибір розміру",
"align_relative_to": "Вирівняти по відношенню до ...", "align_relative_to": "Вирівняти по відношенню до ...",
"relativeTo": "в порівнянні з:", "relativeTo": "в порівнянні з:",
"page": "сторінка", "page": "сторінка",
"largest_object": "найбільший об&#39;єкт", "largest_object": "найбільший об&#39;єкт",
"selected_objects": "обраними об&#39;єктами", "selected_objects": "обраними об&#39;єктами",
"smallest_object": "маленький об&#39;єкт", "smallest_object": "маленький об&#39;єкт",
"new_doc": "Нове зображення", "new_doc": "Нове зображення",
"open_doc": "Відкрити зображення", "open_doc": "Відкрити зображення",
"export_img": "Export", "export_img": "Export",
"save_doc": "Зберегти малюнок", "save_doc": "Зберегти малюнок",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Вирівняти по нижньому краю", "align_bottom": "Вирівняти по нижньому краю",
"align_center": "Вирівняти по центру", "align_center": "Вирівняти по центру",
"align_left": "По лівому краю", "align_left": "По лівому краю",
"align_middle": "Вирівняти Близького", "align_middle": "Вирівняти Близького",
"align_right": "По правому краю", "align_right": "По правому краю",
"align_top": "Вирівняти по верхньому краю", "align_top": "Вирівняти по верхньому краю",
"mode_select": "Виберіть інструмент", "mode_select": "Виберіть інструмент",
"mode_fhpath": "Pencil Tool", "mode_fhpath": "Pencil Tool",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Вільної руки Прямокутник", "mode_fhrect": "Вільної руки Прямокутник",
"mode_ellipse": "Еліпс", "mode_ellipse": "Еліпс",
"mode_circle": "Коло", "mode_circle": "Коло",
"mode_fhellipse": "Вільної руки Еліпс", "mode_fhellipse": "Вільної руки Еліпс",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Текст Tool", "mode_text": "Текст Tool",
"mode_image": "Image Tool", "mode_image": "Image Tool",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Скасувати", "undo": "Скасувати",
"redo": "Повтор", "redo": "Повтор",
"tool_source": "Змінити вихідний", "tool_source": "Змінити вихідний",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Група елементів", "group_elements": "Група елементів",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Елементи розгрупувати", "ungroup": "Елементи розгрупувати",
"docprops": "Властивості документа", "docprops": "Властивості документа",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Перемістити вниз", "move_bottom": "Перемістити вниз",
"move_top": "Перемістити догори", "move_top": "Перемістити догори",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Зберегти", "source_save": "Зберегти",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Видалити шар", "del": "Видалити шар",
"move_down": "Перемістити шар на", "move_down": "Перемістити шар на",
"new": "Новий шар", "new": "Новий шар",
"rename": "Перейменувати Шар", "rename": "Перейменувати Шар",
"move_up": "Переміщення шару до", "move_up": "Переміщення шару до",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Виберіть зумовлений:", "select_predefined": "Виберіть зумовлений:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "vi", lang: "vi",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "Lưu", "ok": "Lưu",
"cancel": "Hủy", "cancel": "Hủy",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "Nhấn vào đây để thay đổi đầy màu sắc, thay đổi nhấp chuột để thay đổi màu sắc đột quỵ", "palette_info": "Nhấn vào đây để thay đổi đầy màu sắc, thay đổi nhấp chuột để thay đổi màu sắc đột quỵ",
"zoom_level": "Thay đổi mức độ phóng", "zoom_level": "Thay đổi mức độ phóng",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "Thay đổi đầy màu sắc", "fill_color": "Thay đổi đầy màu sắc",
"stroke_color": "Thay đổi màu sắc đột quỵ", "stroke_color": "Thay đổi màu sắc đột quỵ",
"stroke_style": "Thay đổi phong cách đột quỵ dash", "stroke_style": "Thay đổi phong cách đột quỵ dash",
"stroke_width": "Thay đổi chiều rộng đột quỵ", "stroke_width": "Thay đổi chiều rộng đột quỵ",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "Thay đổi góc xoay", "angle": "Thay đổi góc xoay",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "Thay đổi lựa chọn opacity mục", "opacity": "Thay đổi lựa chọn opacity mục",
"circle_cx": "Thay đổi hình tròn của cx phối hợp", "circle_cx": "Thay đổi hình tròn của cx phối hợp",
"circle_cy": "Thay đổi hình tròn của vi phối hợp", "circle_cy": "Thay đổi hình tròn của vi phối hợp",
"circle_r": "Thay đổi bán kính của hình tròn", "circle_r": "Thay đổi bán kính của hình tròn",
"ellipse_cx": "Thay đổi hình elip của cx phối hợp", "ellipse_cx": "Thay đổi hình elip của cx phối hợp",
"ellipse_cy": "Thay đổi hình elip của vi phối hợp", "ellipse_cy": "Thay đổi hình elip của vi phối hợp",
"ellipse_rx": "Thay đổi hình elip của x bán kính", "ellipse_rx": "Thay đổi hình elip của x bán kính",
"ellipse_ry": "Y Thay đổi bán kính của hình ellipse", "ellipse_ry": "Y Thay đổi bán kính của hình ellipse",
"line_x1": "Thay đổi dòng của bắt đầu từ x phối hợp", "line_x1": "Thay đổi dòng của bắt đầu từ x phối hợp",
"line_x2": "Thay đổi dòng của x kết thúc sớm nhất phối hợp", "line_x2": "Thay đổi dòng của x kết thúc sớm nhất phối hợp",
"line_y1": "Thay đổi dòng của bắt đầu từ y phối hợp", "line_y1": "Thay đổi dòng của bắt đầu từ y phối hợp",
"line_y2": "Thay đổi dòng của kết thúc y phối hợp", "line_y2": "Thay đổi dòng của kết thúc y phối hợp",
"rect_height": "Thay đổi hình chữ nhật chiều cao", "rect_height": "Thay đổi hình chữ nhật chiều cao",
"rect_width": "Thay đổi hình chữ nhật chiều rộng", "rect_width": "Thay đổi hình chữ nhật chiều rộng",
"corner_radius": "Thay đổi chữ nhật Corner Radius", "corner_radius": "Thay đổi chữ nhật Corner Radius",
"image_width": "Thay đổi hình ảnh rộng", "image_width": "Thay đổi hình ảnh rộng",
"image_height": "Thay đổi hình ảnh chiều cao", "image_height": "Thay đổi hình ảnh chiều cao",
"image_url": "Thay đổi URL", "image_url": "Thay đổi URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "Thay đổi nội dung văn bản", "text_contents": "Thay đổi nội dung văn bản",
"font_family": "Thay đổi Font Gia đình", "font_family": "Thay đổi Font Gia đình",
"font_size": "Thay đổi cỡ chữ", "font_size": "Thay đổi cỡ chữ",
"bold": "Bold Text", "bold": "Bold Text",
"italic": "Italic Text" "italic": "Italic Text"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "Thay đổi màu nền / opacity", "bkgnd_color_opac": "Thay đổi màu nền / opacity",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "Phù hợp với nội dung", "fitToContent": "Phù hợp với nội dung",
"fit_to_all": "Phù hợp với tất cả nội dung", "fit_to_all": "Phù hợp với tất cả nội dung",
"fit_to_canvas": "Phù hợp với vải", "fit_to_canvas": "Phù hợp với vải",
"fit_to_layer_content": "Vào lớp phù hợp với nội dung", "fit_to_layer_content": "Vào lớp phù hợp với nội dung",
"fit_to_sel": "Phù hợp để lựa chọn", "fit_to_sel": "Phù hợp để lựa chọn",
"align_relative_to": "Căn liên quan đến ...", "align_relative_to": "Căn liên quan đến ...",
"relativeTo": "liên quan đến:", "relativeTo": "liên quan đến:",
"page": "Page", "page": "Page",
"largest_object": "lớn nhất đối tượng", "largest_object": "lớn nhất đối tượng",
"selected_objects": "bầu các đối tượng", "selected_objects": "bầu các đối tượng",
"smallest_object": "nhỏ đối tượng", "smallest_object": "nhỏ đối tượng",
"new_doc": "Hình mới", "new_doc": "Hình mới",
"open_doc": "Mở Image", "open_doc": "Mở Image",
"export_img": "Export", "export_img": "Export",
"save_doc": "Save Image", "save_doc": "Save Image",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "Align Bottom", "align_bottom": "Align Bottom",
"align_center": "Căn giữa", "align_center": "Căn giữa",
"align_left": "Căn còn lại", "align_left": "Căn còn lại",
"align_middle": "Căn Trung", "align_middle": "Căn Trung",
"align_right": "Căn phải", "align_right": "Căn phải",
"align_top": "Căn Top", "align_top": "Căn Top",
"mode_select": "Chọn Công cụ", "mode_select": "Chọn Công cụ",
"mode_fhpath": "Bút chì Công cụ", "mode_fhpath": "Bút chì Công cụ",
"mode_line": "Line Tool", "mode_line": "Line Tool",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Việt-Hand Hình chữ nhật", "mode_fhrect": "Việt-Hand Hình chữ nhật",
"mode_ellipse": "Ellipse", "mode_ellipse": "Ellipse",
"mode_circle": "Circle", "mode_circle": "Circle",
"mode_fhellipse": "Việt-Hand Ellipse", "mode_fhellipse": "Việt-Hand Ellipse",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "Text Tool", "mode_text": "Text Tool",
"mode_image": "Hình Công cụ", "mode_image": "Hình Công cụ",
"mode_zoom": "Zoom Tool", "mode_zoom": "Zoom Tool",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "Hoàn tác", "undo": "Hoàn tác",
"redo": "Làm lại", "redo": "Làm lại",
"tool_source": "Sửa Nguồn", "tool_source": "Sửa Nguồn",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "Nhóm Elements", "group_elements": "Nhóm Elements",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "Document Properties", "docprops": "Document Properties",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "Chuyển đến đáy", "move_bottom": "Chuyển đến đáy",
"move_top": "Move to Top", "move_top": "Move to Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "Lưu", "source_save": "Lưu",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "Xoá Layer", "del": "Xoá Layer",
"move_down": "Move Layer Down", "move_down": "Move Layer Down",
"new": "New Layer", "new": "New Layer",
"rename": "Đổi tên Layer", "rename": "Đổi tên Layer",
"move_up": "Di chuyển Layer Up", "move_up": "Di chuyển Layer Up",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "Chọn định sẵn:", "select_predefined": "Chọn định sẵn:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "yi", lang: "yi",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "היט", "ok": "היט",
"cancel": "באָטל מאַכן", "cancel": "באָטל מאַכן",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "גיט צו ענדערן אָנעסן קאָליר, יבעררוק-גיט צו טוישן מאַך קאָליר", "palette_info": "גיט צו ענדערן אָנעסן קאָליר, יבעררוק-גיט צו טוישן מאַך קאָליר",
"zoom_level": "ענדערן פארגרעסער הייך", "zoom_level": "ענדערן פארגרעסער הייך",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "ענדערן אָנעסן קאָליר", "fill_color": "ענדערן אָנעסן קאָליר",
"stroke_color": "טוישן מאַך קאָליר", "stroke_color": "טוישן מאַך קאָליר",
"stroke_style": "טוישן מאַך לאָך מאָדע", "stroke_style": "טוישן מאַך לאָך מאָדע",
"stroke_width": "טוישן מאַך ברייט", "stroke_width": "טוישן מאַך ברייט",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "ענדערן ראָוטיישאַן ווינקל", "angle": "ענדערן ראָוטיישאַן ווינקל",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "ענדערן סעלעקטעד נומער אָופּאַסאַטי", "opacity": "ענדערן סעלעקטעד נומער אָופּאַסאַטי",
"circle_cx": "ענדערן קרייז ס קקס קאָואָרדאַנאַט", "circle_cx": "ענדערן קרייז ס קקס קאָואָרדאַנאַט",
"circle_cy": "ענדערן קרייז ס סי קאָואָרדאַנאַט", "circle_cy": "ענדערן קרייז ס סי קאָואָרדאַנאַט",
"circle_r": "ענדערן קרייז ס ראַדיוס", "circle_r": "ענדערן קרייז ס ראַדיוס",
"ellipse_cx": "ענדערן יליפּס ס קקס קאָואָרדאַנאַט", "ellipse_cx": "ענדערן יליפּס ס קקס קאָואָרדאַנאַט",
"ellipse_cy": "ענדערן יליפּס ס סי קאָואָרדאַנאַט", "ellipse_cy": "ענדערן יליפּס ס סי קאָואָרדאַנאַט",
"ellipse_rx": "ענדערן יליפּס ס &#39;קס ראַדיוס", "ellipse_rx": "ענדערן יליפּס ס &#39;קס ראַדיוס",
"ellipse_ry": "ענדערן יליפּס ס &#39;י ראַדיוס", "ellipse_ry": "ענדערן יליפּס ס &#39;י ראַדיוס",
"line_x1": "טוישן ליניע ס &#39;סטאַרטינג קס קאָואָרדאַנאַט", "line_x1": "טוישן ליניע ס &#39;סטאַרטינג קס קאָואָרדאַנאַט",
"line_x2": "טוישן ליניע ס &#39;סאָף קס קאָואָרדאַנאַט", "line_x2": "טוישן ליניע ס &#39;סאָף קס קאָואָרדאַנאַט",
"line_y1": "טוישן ליניע ס &#39;סטאַרטינג י קאָואָרדאַנאַט", "line_y1": "טוישן ליניע ס &#39;סטאַרטינג י קאָואָרדאַנאַט",
"line_y2": "טוישן ליניע ס &#39;סאָף י קאָואָרדאַנאַט", "line_y2": "טוישן ליניע ס &#39;סאָף י קאָואָרדאַנאַט",
"rect_height": "ענדערן גראָדעק הייך", "rect_height": "ענדערן גראָדעק הייך",
"rect_width": "ענדערן גראָדעק ברייט", "rect_width": "ענדערן גראָדעק ברייט",
"corner_radius": "ענדערן רעקטאַנגלע קאָרנער ראַדיוס", "corner_radius": "ענדערן רעקטאַנגלע קאָרנער ראַדיוס",
"image_width": "טוישן בילד ברייט", "image_width": "טוישן בילד ברייט",
"image_height": "טוישן בילד הייך", "image_height": "טוישן בילד הייך",
"image_url": "ענדערן URL", "image_url": "ענדערן URL",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "ענדערן טעקסט אינהאַלט", "text_contents": "ענדערן טעקסט אינהאַלט",
"font_family": "ענדערן פאָנט פאַמילי", "font_family": "ענדערן פאָנט פאַמילי",
"font_size": "בייטן פאָנט גרייס", "font_size": "בייטן פאָנט גרייס",
"bold": "דרייסט טעקסט", "bold": "דרייסט טעקסט",
"italic": "יטאַליק טעקסט" "italic": "יטאַליק טעקסט"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "ענדערן הינטערגרונט פאַרב / אָופּאַסאַטי", "bkgnd_color_opac": "ענדערן הינטערגרונט פאַרב / אָופּאַסאַטי",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "פּאַסיק צו אינהאַלט", "fitToContent": "פּאַסיק צו אינהאַלט",
"fit_to_all": "פּאַסיק צו אַלע אינהאַלט", "fit_to_all": "פּאַסיק צו אַלע אינהאַלט",
"fit_to_canvas": "פּאַסיק צו לייוונט", "fit_to_canvas": "פּאַסיק צו לייוונט",
"fit_to_layer_content": "פּאַסיק צו שיכטע אינהאַלט", "fit_to_layer_content": "פּאַסיק צו שיכטע אינהאַלט",
"fit_to_sel": "פּאַסיק צו אָפּקלייב", "fit_to_sel": "פּאַסיק צו אָפּקלייב",
"align_relative_to": "יינרייען קאָרעוו צו ...", "align_relative_to": "יינרייען קאָרעוו צו ...",
"relativeTo": "קאָרעוו צו:", "relativeTo": "קאָרעוו צו:",
"page": "בלאַט", "page": "בלאַט",
"largest_object": "לאַרדזשאַסט קעגן", "largest_object": "לאַרדזשאַסט קעגן",
"selected_objects": "עלעקטעד אַבדזשעקץ", "selected_objects": "עלעקטעד אַבדזשעקץ",
"smallest_object": "סמאָלאַסט קעגן", "smallest_object": "סמאָלאַסט קעגן",
"new_doc": "ניו בילד", "new_doc": "ניו בילד",
"open_doc": "Open בילד", "open_doc": "Open בילד",
"export_img": "Export", "export_img": "Export",
"save_doc": "היט בילד", "save_doc": "היט בילד",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "יינרייען באָטטאָם", "align_bottom": "יינרייען באָטטאָם",
"align_center": "יינרייען צענטער", "align_center": "יינרייען צענטער",
"align_left": "יינרייען לעפט", "align_left": "יינרייען לעפט",
"align_middle": "יינרייען מיטל", "align_middle": "יינרייען מיטל",
"align_right": "יינרייען רעכט", "align_right": "יינרייען רעכט",
"align_top": "יינרייען Top", "align_top": "יינרייען Top",
"mode_select": "סעלעקטירן טול", "mode_select": "סעלעקטירן טול",
"mode_fhpath": "בלייער טול", "mode_fhpath": "בלייער טול",
"mode_line": "שורה טול", "mode_line": "שורה טול",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "Free-הענט רעקטאַנגלע", "mode_fhrect": "Free-הענט רעקטאַנגלע",
"mode_ellipse": "עלליפּסע", "mode_ellipse": "עלליפּסע",
"mode_circle": "קאַראַהאָד", "mode_circle": "קאַראַהאָד",
"mode_fhellipse": "Free-הענט עלליפּסע", "mode_fhellipse": "Free-הענט עלליפּסע",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "טעקסט טול", "mode_text": "טעקסט טול",
"mode_image": "בילד טול", "mode_image": "בילד טול",
"mode_zoom": "פארגרעסער טול", "mode_zoom": "פארגרעסער טול",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "ופמאַכן", "undo": "ופמאַכן",
"redo": "רעדאָ", "redo": "רעדאָ",
"tool_source": "רעדאַקטירן סאָרס", "tool_source": "רעדאַקטירן סאָרס",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "גרופּע עלעמענץ", "group_elements": "גרופּע עלעמענץ",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "ונגראָופּ עלעמענץ", "ungroup": "ונגראָופּ עלעמענץ",
"docprops": "דאָקומענט פּראָפּערטיעס", "docprops": "דאָקומענט פּראָפּערטיעס",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "מאַך צו באָטטאָם", "move_bottom": "מאַך צו באָטטאָם",
"move_top": "באַוועגן צו Top", "move_top": "באַוועגן צו Top",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "היט", "source_save": "היט",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "ויסמעקן לייַער", "del": "ויסמעקן לייַער",
"move_down": "קער לייַער דאָוון", "move_down": "קער לייַער דאָוון",
"new": "ניו לייַער", "new": "ניו לייַער",
"rename": "רענאַמע לייַער", "rename": "רענאַמע לייַער",
"move_up": "באַוועגן לייַער אַרויף", "move_up": "באַוועגן לייַער אַרויף",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "סעלעקטירן פּרעדעפינעד:", "select_predefined": "סעלעקטירן פּרעדעפינעד:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "zh-CN", lang: "zh-CN",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "保存", "ok": "保存",
"cancel": "取消", "cancel": "取消",
"key_backspace": "退格", "key_backspace": "退格",
"key_del": "删除", "key_del": "删除",
"key_down": "下", "key_down": "下",
"key_up": "上", "key_up": "上",
"more_opts": "更多选项", "more_opts": "更多选项",
"url": "URL", "url": "URL",
"width": "宽度", "width": "宽度",
"height": "高度" "height": "高度"
}, },
misc: { misc: {
"powered_by": "版权所有" "powered_by": "版权所有"
}, },
ui: { ui: {
"toggle_stroke_tools": "显示/隐藏更式边线工具", "toggle_stroke_tools": "显示/隐藏更式边线工具",
"palette_info": "点击更改填充颜色按住Shift键单击更改线条颜色", "palette_info": "点击更改填充颜色按住Shift键单击更改线条颜色",
"zoom_level": "更改缩放级别", "zoom_level": "更改缩放级别",
"panel_drag": "左右拖拽调整面板大小" "panel_drag": "左右拖拽调整面板大小"
}, },
properties: { properties: {
"id": "元素ID", "id": "元素ID",
"fill_color": "更改填充颜色", "fill_color": "更改填充颜色",
"stroke_color": "线条的颜色变化", "stroke_color": "线条的颜色变化",
"stroke_style": "更改线条样式", "stroke_style": "更改线条样式",
"stroke_width": "更改线条宽度", "stroke_width": "更改线条宽度",
"pos_x": "更改X坐标", "pos_x": "更改X坐标",
"pos_y": "更改Y坐标", "pos_y": "更改Y坐标",
"linecap_butt": "顶端样式: 齐平", "linecap_butt": "顶端样式: 齐平",
"linecap_round": "顶端样式: 圆滑", "linecap_round": "顶端样式: 圆滑",
"linecap_square": "顶端样式: 方块", "linecap_square": "顶端样式: 方块",
"linejoin_bevel": "连接处: 削平", "linejoin_bevel": "连接处: 削平",
"linejoin_miter": "连接处: 直角", "linejoin_miter": "连接处: 直角",
"linejoin_round": "连接处: 圆角", "linejoin_round": "连接处: 圆角",
"angle": "更改旋转角度", "angle": "更改旋转角度",
"blur": "更改高斯模糊值", "blur": "更改高斯模糊值",
"opacity": "更改所选条目的不透明度", "opacity": "更改所选条目的不透明度",
"circle_cx": "改变圆的中心X坐标", "circle_cx": "改变圆的中心X坐标",
"circle_cy": "改变圆的中心Y坐标", "circle_cy": "改变圆的中心Y坐标",
"circle_r": "改变圆的半径", "circle_r": "改变圆的半径",
"ellipse_cx": "改变椭圆的中心X坐标", "ellipse_cx": "改变椭圆的中心X坐标",
"ellipse_cy": "改变椭圆的中心Y坐标", "ellipse_cy": "改变椭圆的中心Y坐标",
"ellipse_rx": "改变椭圆的x半径", "ellipse_rx": "改变椭圆的x半径",
"ellipse_ry": "改变椭圆的y半径", "ellipse_ry": "改变椭圆的y半径",
"line_x1": "更改直线起点的x坐标", "line_x1": "更改直线起点的x坐标",
"line_x2": "更改直线终点的x坐标", "line_x2": "更改直线终点的x坐标",
"line_y1": "更改直线起点的y坐标", "line_y1": "更改直线起点的y坐标",
"line_y2": "更改直线终点的y坐标", "line_y2": "更改直线终点的y坐标",
"rect_height": "更改矩形的高度", "rect_height": "更改矩形的高度",
"rect_width": "更改矩形的宽度", "rect_width": "更改矩形的宽度",
"corner_radius": "角半径:", "corner_radius": "角半径:",
"image_width": "更改图像的宽度", "image_width": "更改图像的宽度",
"image_height": "更改图像的高度", "image_height": "更改图像的高度",
"image_url": "更改网址", "image_url": "更改网址",
"node_x": "更改节点的X坐标", "node_x": "更改节点的X坐标",
"node_y": "更改节点的Y坐标", "node_y": "更改节点的Y坐标",
"seg_type": "修改线段类型", "seg_type": "修改线段类型",
"straight_segments": "直线", "straight_segments": "直线",
"curve_segments": "曲线", "curve_segments": "曲线",
"text_contents": "更改文本内容", "text_contents": "更改文本内容",
"font_family": "更改字体样式", "font_family": "更改字体样式",
"font_size": "更改字体大小", "font_size": "更改字体大小",
"bold": "粗体", "bold": "粗体",
"italic": "斜体" "italic": "斜体"
}, },
tools: { tools: {
"main_menu": "主菜单", "main_menu": "主菜单",
"bkgnd_color_opac": "更改背景颜色/不透明", "bkgnd_color_opac": "更改背景颜色/不透明",
"connector_no_arrow": "无箭头", "connector_no_arrow": "无箭头",
"fitToContent": "适应内容", "fitToContent": "适应内容",
"fit_to_all": "适应于所有的内容", "fit_to_all": "适应于所有的内容",
"fit_to_canvas": "适应画布", "fit_to_canvas": "适应画布",
"fit_to_layer_content": "适应层内容", "fit_to_layer_content": "适应层内容",
"fit_to_sel": "适应选中内容", "fit_to_sel": "适应选中内容",
"align_relative_to": "相对对齐 ...", "align_relative_to": "相对对齐 ...",
"relativeTo": "相对于:", "relativeTo": "相对于:",
"page": "网页", "page": "网页",
"largest_object": "最大对象", "largest_object": "最大对象",
"selected_objects": "选中的对象", "selected_objects": "选中的对象",
"smallest_object": "最小的对象", "smallest_object": "最小的对象",
"new_doc": "新文档", "new_doc": "新文档",
"open_doc": "打开文档", "open_doc": "打开文档",
"export_img": "导出", "export_img": "导出",
"save_doc": "保存图像", "save_doc": "保存图像",
"import_doc": "导入SVG", "import_doc": "导入SVG",
"align_to_page": "对齐元素到页面", "align_to_page": "对齐元素到页面",
"align_bottom": "底部对齐", "align_bottom": "底部对齐",
"align_center": "居中对齐", "align_center": "居中对齐",
"align_left": "左对齐", "align_left": "左对齐",
"align_middle": "水平居中对齐", "align_middle": "水平居中对齐",
"align_right": "右对齐", "align_right": "右对齐",
"align_top": "顶端对齐", "align_top": "顶端对齐",
"mode_select": "选择工具", "mode_select": "选择工具",
"mode_fhpath": "铅笔工具", "mode_fhpath": "铅笔工具",
"mode_line": "线工具", "mode_line": "线工具",
"mode_connect": "连接两个对象", "mode_connect": "连接两个对象",
"mode_rect": "矩形", "mode_rect": "矩形",
"mode_square": "正方形", "mode_square": "正方形",
"mode_fhrect": "自由矩形", "mode_fhrect": "自由矩形",
"mode_ellipse": "椭圆", "mode_ellipse": "椭圆",
"mode_circle": "圆形", "mode_circle": "圆形",
"mode_fhellipse": "自由椭圆", "mode_fhellipse": "自由椭圆",
"mode_path": "路径", "mode_path": "路径",
"mode_shapelib": "图形库", "mode_shapelib": "图形库",
"mode_text": "文字工具", "mode_text": "文字工具",
"mode_image": "图像工具", "mode_image": "图像工具",
"mode_zoom": "缩放工具", "mode_zoom": "缩放工具",
"mode_eyedropper": "吸管", "mode_eyedropper": "吸管",
"no_embed": "注意: 根据SVG图像的存储位置内嵌的位图可能无法显示!", "no_embed": "注意: 根据SVG图像的存储位置内嵌的位图可能无法显示!",
"undo": "撤消", "undo": "撤消",
"redo": "重做", "redo": "重做",
"tool_source": "编辑源", "tool_source": "编辑源",
"wireframe_mode": "线条模式", "wireframe_mode": "线条模式",
"toggle_grid": "显示/隐藏 网格", "toggle_grid": "显示/隐藏 网格",
"clone": "克隆元素", "clone": "克隆元素",
"del": "删除元素", "del": "删除元素",
"group_elements": "组合元素", "group_elements": "组合元素",
"make_link": "创建超链接", "make_link": "创建超链接",
"set_link_url": "设置链接URL (设置为空以删除)", "set_link_url": "设置链接URL (设置为空以删除)",
"to_path": "转换为路径", "to_path": "转换为路径",
"reorient_path": "调整路径", "reorient_path": "调整路径",
"ungroup": "取消组合元素", "ungroup": "取消组合元素",
"docprops": "文档属性", "docprops": "文档属性",
"imagelib": "图像库", "imagelib": "图像库",
"move_bottom": "移至底部", "move_bottom": "移至底部",
"move_top": "移至顶部", "move_top": "移至顶部",
"node_clone": "复制节点", "node_clone": "复制节点",
"node_delete": "删除节点", "node_delete": "删除节点",
"node_link": "连接控制点", "node_link": "连接控制点",
"add_subpath": "添加子路径", "add_subpath": "添加子路径",
"openclose_path": "打开/关闭 子路径", "openclose_path": "打开/关闭 子路径",
"source_save": "保存", "source_save": "保存",
"cut": "剪切", "cut": "剪切",
"copy": "复制", "copy": "复制",
"paste": "粘贴", "paste": "粘贴",
"paste_in_place": "粘贴到原位置", "paste_in_place": "粘贴到原位置",
"delete": "删除", "delete": "删除",
"group": "组合", "group": "组合",
"move_front": "移至顶部", "move_front": "移至顶部",
"move_up": "向上移动", "move_up": "向上移动",
"move_down": "向下移动", "move_down": "向下移动",
"move_back": "移至底部" "move_back": "移至底部"
}, },
layers: { layers: {
"layer": "图层", "layer": "图层",
"layers": "图层", "layers": "图层",
"del": "删除图层", "del": "删除图层",
"move_down": "向下移动图层", "move_down": "向下移动图层",
"new": "新建图层", "new": "新建图层",
"rename": "重命名图层", "rename": "重命名图层",
"move_up": "向上移动图层", "move_up": "向上移动图层",
"dupe": "复制图层", "dupe": "复制图层",
"merge_down": "向下合并", "merge_down": "向下合并",
"merge_all": "全部合并", "merge_all": "全部合并",
"move_elems_to": "移动元素至:", "move_elems_to": "移动元素至:",
"move_selected": "移动元素至另一个图层" "move_selected": "移动元素至另一个图层"
}, },
config: { config: {
"image_props": "图像属性", "image_props": "图像属性",
"doc_title": "标题", "doc_title": "标题",
"doc_dims": "画布大小", "doc_dims": "画布大小",
"included_images": "包含图像", "included_images": "包含图像",
"image_opt_embed": "嵌入数据 (本地文件)", "image_opt_embed": "嵌入数据 (本地文件)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "编辑器首选项", "editor_prefs": "编辑器首选项",
"icon_size": "图标大小", "icon_size": "图标大小",
"language": "语言", "language": "语言",
"background": "编辑器背景", "background": "编辑器背景",
"editor_img_url": "图像 URL", "editor_img_url": "图像 URL",
"editor_bg_note": "注意: 背景不会保存在图像中.", "editor_bg_note": "注意: 背景不会保存在图像中.",
"icon_large": "大", "icon_large": "大",
"icon_medium": "中", "icon_medium": "中",
"icon_small": "小", "icon_small": "小",
"icon_xlarge": "特大", "icon_xlarge": "特大",
"select_predefined": "选择预定义:", "select_predefined": "选择预定义:",
"units_and_rulers": "单位 & 标尺", "units_and_rulers": "单位 & 标尺",
"show_rulers": "显示标尺", "show_rulers": "显示标尺",
"base_unit": "基本单位:", "base_unit": "基本单位:",
"grid": "网格", "grid": "网格",
"snapping_onoff": "吸附开/关", "snapping_onoff": "吸附开/关",
"snapping_stepsize": "吸附步长:", "snapping_stepsize": "吸附步长:",
"grid_color": "网格颜色" "grid_color": "网格颜色"
}, },
shape_cats: { shape_cats: {
"basic": "常规", "basic": "常规",
"object": "对象", "object": "对象",
"symbol": "符号", "symbol": "符号",
"arrow": "箭头", "arrow": "箭头",
"flowchart": "流程图", "flowchart": "流程图",
"animal": "动物", "animal": "动物",
"game": "纸牌 & 棋子", "game": "纸牌 & 棋子",
"dialog_balloon": "信息气球", "dialog_balloon": "信息气球",
"electronics": "电力元件", "electronics": "电力元件",
"math": "数学符号", "math": "数学符号",
"music": "音乐符号", "music": "音乐符号",
"misc": "杂项", "misc": "杂项",
"raphael_1": "常用图标1", "raphael_1": "常用图标1",
"raphael_2": "常用图标2" "raphael_2": "常用图标2"
}, },
imagelib: { imagelib: {
"select_lib": "选择一个图像库", "select_lib": "选择一个图像库",
"show_list": "显示库列表", "show_list": "显示库列表",
"import_single": "单个导入", "import_single": "单个导入",
"import_multi": "批量导入", "import_multi": "批量导入",
"open": "打开一个新文档" "open": "打开一个新文档"
}, },
notification: { notification: {
"invalidAttrValGiven": "无效的参数", "invalidAttrValGiven": "无效的参数",
"noContentToFitTo": "无可适应的内容", "noContentToFitTo": "无可适应的内容",
"dupeLayerName": "已存在同名的图层!", "dupeLayerName": "已存在同名的图层!",
"enterUniqueLayerName": "请输入一个唯一的图层名称", "enterUniqueLayerName": "请输入一个唯一的图层名称",
"enterNewLayerName": "请输入新的图层名称", "enterNewLayerName": "请输入新的图层名称",
"layerHasThatName": "图层已经采用了该名称", "layerHasThatName": "图层已经采用了该名称",
"QmoveElemsToLayer": "您确定移动所选元素到图层'%s'吗?", "QmoveElemsToLayer": "您确定移动所选元素到图层'%s'吗?",
"QwantToClear": "您希望清除当前绘制的所有图形吗?\n该操作将无法撤消!", "QwantToClear": "您希望清除当前绘制的所有图形吗?\n该操作将无法撤消!",
"QwantToOpen": "您希望打开一个新文档吗?\n该操作将无法撤消!", "QwantToOpen": "您希望打开一个新文档吗?\n该操作将无法撤消!",
"QerrorsRevertToSource": "SVG文件解析错误.\n是否还原到最初的SVG文件?", "QerrorsRevertToSource": "SVG文件解析错误.\n是否还原到最初的SVG文件?",
"QignoreSourceChanges": "忽略对SVG文件所作的更改么?", "QignoreSourceChanges": "忽略对SVG文件所作的更改么?",
"featNotSupported": "不支持该功能", "featNotSupported": "不支持该功能",
"enterNewImgURL": "请输入新图像的URLL", "enterNewImgURL": "请输入新图像的URLL",
"defsFailOnSave": "注意: 由于您所使用的浏览器存在缺陷, 该图像无法正确显示 (不支持渐变或相关元素). 修复该缺陷后可正确显示.", "defsFailOnSave": "注意: 由于您所使用的浏览器存在缺陷, 该图像无法正确显示 (不支持渐变或相关元素). 修复该缺陷后可正确显示.",
"loadingImage": "正在加载图像, 请稍候...", "loadingImage": "正在加载图像, 请稍候...",
"saveFromBrowser": "选择浏览器中的 \"另存为...\" 将该图像保存为 %s 文件.", "saveFromBrowser": "选择浏览器中的 \"另存为...\" 将该图像保存为 %s 文件.",
"noteTheseIssues": "同时注意以下几点: ", "noteTheseIssues": "同时注意以下几点: ",
"unsavedChanges": "存在未保存的修改.", "unsavedChanges": "存在未保存的修改.",
"enterNewLinkURL": "输入新建链接的URL地址", "enterNewLinkURL": "输入新建链接的URL地址",
"errorLoadingSVG": "错误: 无法加载SVG数据", "errorLoadingSVG": "错误: 无法加载SVG数据",
"URLloadFail": "无法从URL中加载", "URLloadFail": "无法从URL中加载",
"retrieving": "检索 \"%s\"..." "retrieving": "检索 \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "zh-HK", lang: "zh-HK",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "保存", "ok": "保存",
"cancel": "取消", "cancel": "取消",
"key_backspace": "backspace", "key_backspace": "backspace",
"key_del": "delete", "key_del": "delete",
"key_down": "down", "key_down": "down",
"key_up": "up", "key_up": "up",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "点击更改填充颜色按住Shift键单击更改颜色中风", "palette_info": "点击更改填充颜色按住Shift键单击更改颜色中风",
"zoom_level": "更改缩放级别", "zoom_level": "更改缩放级别",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "更改填充颜色", "fill_color": "更改填充颜色",
"stroke_color": "中风的颜色变化", "stroke_color": "中风的颜色变化",
"stroke_style": "更改行程冲刺风格", "stroke_style": "更改行程冲刺风格",
"stroke_width": "笔划宽度的变化", "stroke_width": "笔划宽度的变化",
"pos_x": "Change X coordinate", "pos_x": "Change X coordinate",
"pos_y": "Change Y coordinate", "pos_y": "Change Y coordinate",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "旋转角度的变化", "angle": "旋转角度的变化",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "更改所选项目不透明", "opacity": "更改所选项目不透明",
"circle_cx": "改变循环的CX坐标", "circle_cx": "改变循环的CX坐标",
"circle_cy": "改变循环的赛扬坐标", "circle_cy": "改变循环的赛扬坐标",
"circle_r": "改变圆的半径", "circle_r": "改变圆的半径",
"ellipse_cx": "改变椭圆的CX坐标", "ellipse_cx": "改变椭圆的CX坐标",
"ellipse_cy": "改变椭圆的赛扬坐标", "ellipse_cy": "改变椭圆的赛扬坐标",
"ellipse_rx": "改变椭圆的x半径", "ellipse_rx": "改变椭圆的x半径",
"ellipse_ry": "改变椭圆的y半径", "ellipse_ry": "改变椭圆的y半径",
"line_x1": "更改行的起点的x坐标", "line_x1": "更改行的起点的x坐标",
"line_x2": "更改行的结束x坐标", "line_x2": "更改行的结束x坐标",
"line_y1": "更改行的起点的y坐标", "line_y1": "更改行的起点的y坐标",
"line_y2": "更改行的结束y坐标", "line_y2": "更改行的结束y坐标",
"rect_height": "更改矩形的高度", "rect_height": "更改矩形的高度",
"rect_width": "更改矩形的宽度", "rect_width": "更改矩形的宽度",
"corner_radius": "角半径:", "corner_radius": "角半径:",
"image_width": "更改图像的宽度", "image_width": "更改图像的宽度",
"image_height": "更改图像高度", "image_height": "更改图像高度",
"image_url": "更改网址", "image_url": "更改网址",
"node_x": "Change node's x coordinate", "node_x": "Change node's x coordinate",
"node_y": "Change node's y coordinate", "node_y": "Change node's y coordinate",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "Straight", "straight_segments": "Straight",
"curve_segments": "Curve", "curve_segments": "Curve",
"text_contents": "更改文字内容", "text_contents": "更改文字内容",
"font_family": "更改字体家族", "font_family": "更改字体家族",
"font_size": "更改字体大小", "font_size": "更改字体大小",
"bold": "粗体", "bold": "粗体",
"italic": "斜体文本" "italic": "斜体文本"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "更改背景颜色/不透明", "bkgnd_color_opac": "更改背景颜色/不透明",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "适合内容", "fitToContent": "适合内容",
"fit_to_all": "适合于所有的内容", "fit_to_all": "适合于所有的内容",
"fit_to_canvas": "适合画布", "fit_to_canvas": "适合画布",
"fit_to_layer_content": "适合层内容", "fit_to_layer_content": "适合层内容",
"fit_to_sel": "适合选择", "fit_to_sel": "适合选择",
"align_relative_to": "相对对齐 ...", "align_relative_to": "相对对齐 ...",
"relativeTo": "相对于:", "relativeTo": "相对于:",
"page": "网页", "page": "网页",
"largest_object": "最大对象", "largest_object": "最大对象",
"selected_objects": "选对象", "selected_objects": "选对象",
"smallest_object": "最小的对象", "smallest_object": "最小的对象",
"new_doc": "新形象", "new_doc": "新形象",
"open_doc": "打开图像", "open_doc": "打开图像",
"export_img": "Export", "export_img": "Export",
"save_doc": "保存图像", "save_doc": "保存图像",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "底部对齐", "align_bottom": "底部对齐",
"align_center": "居中对齐", "align_center": "居中对齐",
"align_left": "左对齐", "align_left": "左对齐",
"align_middle": "中间对齐", "align_middle": "中间对齐",
"align_right": "右对齐", "align_right": "右对齐",
"align_top": "顶端对齐", "align_top": "顶端对齐",
"mode_select": "选择工具", "mode_select": "选择工具",
"mode_fhpath": "铅笔工具", "mode_fhpath": "铅笔工具",
"mode_line": "线工具", "mode_line": "线工具",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "免费手矩形", "mode_fhrect": "免费手矩形",
"mode_ellipse": "椭圆", "mode_ellipse": "椭圆",
"mode_circle": "圈", "mode_circle": "圈",
"mode_fhellipse": "免费手椭圆", "mode_fhellipse": "免费手椭圆",
"mode_path": "Path Tool", "mode_path": "Path Tool",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "文字工具", "mode_text": "文字工具",
"mode_image": "图像工具", "mode_image": "图像工具",
"mode_zoom": "缩放工具", "mode_zoom": "缩放工具",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "撤消", "undo": "撤消",
"redo": "重做", "redo": "重做",
"tool_source": "编辑源", "tool_source": "编辑源",
"wireframe_mode": "Wireframe Mode", "wireframe_mode": "Wireframe Mode",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "族元素", "group_elements": "族元素",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "Convert to Path", "to_path": "Convert to Path",
"reorient_path": "Reorient path", "reorient_path": "Reorient path",
"ungroup": "Ungroup Elements", "ungroup": "Ungroup Elements",
"docprops": "文档属性", "docprops": "文档属性",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "移至底部", "move_bottom": "移至底部",
"move_top": "移动到顶部", "move_top": "移动到顶部",
"node_clone": "Clone Node", "node_clone": "Clone Node",
"node_delete": "Delete Node", "node_delete": "Delete Node",
"node_link": "Link Control Points", "node_link": "Link Control Points",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "保存", "source_save": "保存",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "Layer", "layer": "Layer",
"layers": "Layers", "layers": "Layers",
"del": "删除层", "del": "删除层",
"move_down": "层向下移动", "move_down": "层向下移动",
"new": "新层", "new": "新层",
"rename": "重命名层", "rename": "重命名层",
"move_up": "移动层最多", "move_up": "移动层最多",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "Move elements to:", "move_elems_to": "Move elements to:",
"move_selected": "Move selected elements to a different layer" "move_selected": "Move selected elements to a different layer"
}, },
config: { config: {
"image_props": "Image Properties", "image_props": "Image Properties",
"doc_title": "Title", "doc_title": "Title",
"doc_dims": "Canvas Dimensions", "doc_dims": "Canvas Dimensions",
"included_images": "Included Images", "included_images": "Included Images",
"image_opt_embed": "Embed data (local files)", "image_opt_embed": "Embed data (local files)",
"image_opt_ref": "Use file reference", "image_opt_ref": "Use file reference",
"editor_prefs": "Editor Preferences", "editor_prefs": "Editor Preferences",
"icon_size": "Icon size", "icon_size": "Icon size",
"language": "Language", "language": "Language",
"background": "Editor Background", "background": "Editor Background",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "Note: Background will not be saved with image.", "editor_bg_note": "Note: Background will not be saved with image.",
"icon_large": "Large", "icon_large": "Large",
"icon_medium": "Medium", "icon_medium": "Medium",
"icon_small": "Small", "icon_small": "Small",
"icon_xlarge": "Extra Large", "icon_xlarge": "Extra Large",
"select_predefined": "选择预定义:", "select_predefined": "选择预定义:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "Invalid value given", "invalidAttrValGiven": "Invalid value given",
"noContentToFitTo": "No content to fit to", "noContentToFitTo": "No content to fit to",
"dupeLayerName": "There is already a layer named that!", "dupeLayerName": "There is already a layer named that!",
"enterUniqueLayerName": "Please enter a unique layer name", "enterUniqueLayerName": "Please enter a unique layer name",
"enterNewLayerName": "Please enter the new layer name", "enterNewLayerName": "Please enter the new layer name",
"layerHasThatName": "Layer already has that name", "layerHasThatName": "Layer already has that name",
"QmoveElemsToLayer": "Move selected elements to layer '%s'?", "QmoveElemsToLayer": "Move selected elements to layer '%s'?",
"QwantToClear": "Do you want to clear the drawing?\nThis will also erase your undo history!", "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!", "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?", "QerrorsRevertToSource": "There were parsing errors in your SVG source.\nRevert back to original SVG source?",
"QignoreSourceChanges": "Ignore changes made to SVG source?", "QignoreSourceChanges": "Ignore changes made to SVG source?",
"featNotSupported": "Feature not supported", "featNotSupported": "Feature not supported",
"enterNewImgURL": "Enter the new image URL", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

@@ -1,251 +1,251 @@
/* eslint-disable quotes */ /* eslint-disable quotes */
/* globals svgEditor */ /* globals svgEditor */
svgEditor.readLang({ svgEditor.readLang({
lang: "zh-TW", lang: "zh-TW",
dir: "ltr", dir: "ltr",
common: { common: {
"ok": "保存", "ok": "保存",
"cancel": "取消", "cancel": "取消",
"key_backspace": "空白", "key_backspace": "空白",
"key_del": "刪除", "key_del": "刪除",
"key_down": "下", "key_down": "下",
"key_up": "上", "key_up": "上",
"more_opts": "More Options", "more_opts": "More Options",
"url": "URL", "url": "URL",
"width": "Width", "width": "Width",
"height": "Height" "height": "Height"
}, },
misc: { misc: {
"powered_by": "Powered by" "powered_by": "Powered by"
}, },
ui: { ui: {
"toggle_stroke_tools": "Show/hide more stroke tools", "toggle_stroke_tools": "Show/hide more stroke tools",
"palette_info": "點擊更改填充顏色按住Shift鍵單擊更改線條顏色", "palette_info": "點擊更改填充顏色按住Shift鍵單擊更改線條顏色",
"zoom_level": "更改縮放級別", "zoom_level": "更改縮放級別",
"panel_drag": "Drag left/right to resize side panel" "panel_drag": "Drag left/right to resize side panel"
}, },
properties: { properties: {
"id": "Identify the element", "id": "Identify the element",
"fill_color": "更改填充顏色", "fill_color": "更改填充顏色",
"stroke_color": "線條顏色", "stroke_color": "線條顏色",
"stroke_style": "更改線條(虛線)風格", "stroke_style": "更改線條(虛線)風格",
"stroke_width": "線條寬度", "stroke_width": "線條寬度",
"pos_x": "調整 X 軸", "pos_x": "調整 X 軸",
"pos_y": "調整 Y 軸", "pos_y": "調整 Y 軸",
"linecap_butt": "Linecap: Butt", "linecap_butt": "Linecap: Butt",
"linecap_round": "Linecap: Round", "linecap_round": "Linecap: Round",
"linecap_square": "Linecap: Square", "linecap_square": "Linecap: Square",
"linejoin_bevel": "Linejoin: Bevel", "linejoin_bevel": "Linejoin: Bevel",
"linejoin_miter": "Linejoin: Miter", "linejoin_miter": "Linejoin: Miter",
"linejoin_round": "Linejoin: Round", "linejoin_round": "Linejoin: Round",
"angle": "旋轉角度", "angle": "旋轉角度",
"blur": "Change gaussian blur value", "blur": "Change gaussian blur value",
"opacity": "更改所選項目不透明度", "opacity": "更改所選項目不透明度",
"circle_cx": "改變圓的CX坐標", "circle_cx": "改變圓的CX坐標",
"circle_cy": "改變圓的CY坐標", "circle_cy": "改變圓的CY坐標",
"circle_r": "改變圓的半徑", "circle_r": "改變圓的半徑",
"ellipse_cx": "改變橢圓的圓心x軸座標", "ellipse_cx": "改變橢圓的圓心x軸座標",
"ellipse_cy": "改變橢圓的圓心y軸座標", "ellipse_cy": "改變橢圓的圓心y軸座標",
"ellipse_rx": "改變橢圓的x軸長", "ellipse_rx": "改變橢圓的x軸長",
"ellipse_ry": "改變橢圓的y軸長", "ellipse_ry": "改變橢圓的y軸長",
"line_x1": "更改行的起點的x坐標", "line_x1": "更改行的起點的x坐標",
"line_x2": "更改行的終點x坐標", "line_x2": "更改行的終點x坐標",
"line_y1": "更改行的起點的y坐標", "line_y1": "更改行的起點的y坐標",
"line_y2": "更改行的終點y坐標", "line_y2": "更改行的終點y坐標",
"rect_height": "更改矩形的高度", "rect_height": "更改矩形的高度",
"rect_width": "更改矩形的寬度", "rect_width": "更改矩形的寬度",
"corner_radius": "角半徑:", "corner_radius": "角半徑:",
"image_width": "更改圖像的寬度", "image_width": "更改圖像的寬度",
"image_height": "更改圖像高度", "image_height": "更改圖像高度",
"image_url": "更改網址", "image_url": "更改網址",
"node_x": "改變節點的x軸座標", "node_x": "改變節點的x軸座標",
"node_y": "改變節點的y軸座標", "node_y": "改變節點的y軸座標",
"seg_type": "Change Segment type", "seg_type": "Change Segment type",
"straight_segments": "直線", "straight_segments": "直線",
"curve_segments": "曲線", "curve_segments": "曲線",
"text_contents": "更改文字內容", "text_contents": "更改文字內容",
"font_family": "更改字體", "font_family": "更改字體",
"font_size": "更改字體大小", "font_size": "更改字體大小",
"bold": "粗體", "bold": "粗體",
"italic": "斜體" "italic": "斜體"
}, },
tools: { tools: {
"main_menu": "Main Menu", "main_menu": "Main Menu",
"bkgnd_color_opac": "更改背景顏色/不透明", "bkgnd_color_opac": "更改背景顏色/不透明",
"connector_no_arrow": "No arrow", "connector_no_arrow": "No arrow",
"fitToContent": "適合內容", "fitToContent": "適合內容",
"fit_to_all": "適合所有的內容", "fit_to_all": "適合所有的內容",
"fit_to_canvas": "適合畫布", "fit_to_canvas": "適合畫布",
"fit_to_layer_content": "適合圖層內容", "fit_to_layer_content": "適合圖層內容",
"fit_to_sel": "適合選取的物件", "fit_to_sel": "適合選取的物件",
"align_relative_to": "相對對齊 ...", "align_relative_to": "相對對齊 ...",
"relativeTo": "相對於:", "relativeTo": "相對於:",
"page": "網頁", "page": "網頁",
"largest_object": "最大的物件", "largest_object": "最大的物件",
"selected_objects": "選取物件", "selected_objects": "選取物件",
"smallest_object": "最小的物件", "smallest_object": "最小的物件",
"new_doc": "清空圖像", "new_doc": "清空圖像",
"open_doc": "打開圖像", "open_doc": "打開圖像",
"export_img": "Export", "export_img": "Export",
"save_doc": "保存圖像", "save_doc": "保存圖像",
"import_doc": "Import Image", "import_doc": "Import Image",
"align_to_page": "Align Element to Page", "align_to_page": "Align Element to Page",
"align_bottom": "底部對齊", "align_bottom": "底部對齊",
"align_center": "居中對齊", "align_center": "居中對齊",
"align_left": "向左對齊", "align_left": "向左對齊",
"align_middle": "中間對齊", "align_middle": "中間對齊",
"align_right": "向右對齊", "align_right": "向右對齊",
"align_top": "頂端對齊", "align_top": "頂端對齊",
"mode_select": "選擇工具", "mode_select": "選擇工具",
"mode_fhpath": "鉛筆工具", "mode_fhpath": "鉛筆工具",
"mode_line": "線工具", "mode_line": "線工具",
"mode_connect": "Connect two objects", "mode_connect": "Connect two objects",
"mode_rect": "Rectangle Tool", "mode_rect": "Rectangle Tool",
"mode_square": "Square Tool", "mode_square": "Square Tool",
"mode_fhrect": "徒手畫矩形", "mode_fhrect": "徒手畫矩形",
"mode_ellipse": "橢圓", "mode_ellipse": "橢圓",
"mode_circle": "圓", "mode_circle": "圓",
"mode_fhellipse": "徒手畫橢圓", "mode_fhellipse": "徒手畫橢圓",
"mode_path": "路徑工具", "mode_path": "路徑工具",
"mode_shapelib": "Shape library", "mode_shapelib": "Shape library",
"mode_text": "文字工具", "mode_text": "文字工具",
"mode_image": "圖像工具", "mode_image": "圖像工具",
"mode_zoom": "縮放工具", "mode_zoom": "縮放工具",
"mode_eyedropper": "Eye Dropper Tool", "mode_eyedropper": "Eye Dropper Tool",
"no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed", "no_embed": "NOTE: This image cannot be embedded. It will depend on this path to be displayed",
"undo": "取消復原", "undo": "取消復原",
"redo": "復原", "redo": "復原",
"tool_source": "編輯SVG原始碼", "tool_source": "編輯SVG原始碼",
"wireframe_mode": "框線模式(只瀏覽線條)", "wireframe_mode": "框線模式(只瀏覽線條)",
"toggle_grid": "Show/Hide Grid", "toggle_grid": "Show/Hide Grid",
"clone": "Clone Element(s)", "clone": "Clone Element(s)",
"del": "Delete Element(s)", "del": "Delete Element(s)",
"group_elements": "群組", "group_elements": "群組",
"make_link": "Make (hyper)link", "make_link": "Make (hyper)link",
"set_link_url": "Set link URL (leave empty to remove)", "set_link_url": "Set link URL (leave empty to remove)",
"to_path": "轉換成路徑", "to_path": "轉換成路徑",
"reorient_path": "調整路徑", "reorient_path": "調整路徑",
"ungroup": "取消群組", "ungroup": "取消群組",
"docprops": "文件屬性", "docprops": "文件屬性",
"imagelib": "Image Library", "imagelib": "Image Library",
"move_bottom": "移至底部", "move_bottom": "移至底部",
"move_top": "移動到頂部", "move_top": "移動到頂部",
"node_clone": "增加節點", "node_clone": "增加節點",
"node_delete": "刪除節點", "node_delete": "刪除節點",
"node_link": "將控制點連起來", "node_link": "將控制點連起來",
"add_subpath": "Add sub-path", "add_subpath": "Add sub-path",
"openclose_path": "Open/close sub-path", "openclose_path": "Open/close sub-path",
"source_save": "保存", "source_save": "保存",
"cut": "Cut", "cut": "Cut",
"copy": "Copy", "copy": "Copy",
"paste": "Paste", "paste": "Paste",
"paste_in_place": "Paste in Place", "paste_in_place": "Paste in Place",
"delete": "Delete", "delete": "Delete",
"group": "Group", "group": "Group",
"move_front": "Bring to Front", "move_front": "Bring to Front",
"move_up": "Bring Forward", "move_up": "Bring Forward",
"move_down": "Send Backward", "move_down": "Send Backward",
"move_back": "Send to Back" "move_back": "Send to Back"
}, },
layers: { layers: {
"layer": "圖層", "layer": "圖層",
"layers": "Layers", "layers": "Layers",
"del": "刪除圖層", "del": "刪除圖層",
"move_down": "向下移動圖層", "move_down": "向下移動圖層",
"new": "新增圖層", "new": "新增圖層",
"rename": "重新命名圖層", "rename": "重新命名圖層",
"move_up": "向上移動圖層", "move_up": "向上移動圖層",
"dupe": "Duplicate Layer", "dupe": "Duplicate Layer",
"merge_down": "Merge Down", "merge_down": "Merge Down",
"merge_all": "Merge All", "merge_all": "Merge All",
"move_elems_to": "移動物件到:", "move_elems_to": "移動物件到:",
"move_selected": "移動被點選的物件其他圖層" "move_selected": "移動被點選的物件其他圖層"
}, },
config: { config: {
"image_props": "圖片屬性", "image_props": "圖片屬性",
"doc_title": "標題", "doc_title": "標題",
"doc_dims": "畫布大小", "doc_dims": "畫布大小",
"included_images": "包含圖像", "included_images": "包含圖像",
"image_opt_embed": "內嵌資料 (本地端檔案)", "image_opt_embed": "內嵌資料 (本地端檔案)",
"image_opt_ref": "使用檔案參照", "image_opt_ref": "使用檔案參照",
"editor_prefs": "編輯器屬性", "editor_prefs": "編輯器屬性",
"icon_size": "圖示大小", "icon_size": "圖示大小",
"language": "語言", "language": "語言",
"background": "編輯器背景", "background": "編輯器背景",
"editor_img_url": "Image URL", "editor_img_url": "Image URL",
"editor_bg_note": "注意: 編輯器背景不會和圖像一起儲存", "editor_bg_note": "注意: 編輯器背景不會和圖像一起儲存",
"icon_large": "大", "icon_large": "大",
"icon_medium": "中", "icon_medium": "中",
"icon_small": "小", "icon_small": "小",
"icon_xlarge": "特大", "icon_xlarge": "特大",
"select_predefined": "使用預設值:", "select_predefined": "使用預設值:",
"units_and_rulers": "Units & Rulers", "units_and_rulers": "Units & Rulers",
"show_rulers": "Show rulers", "show_rulers": "Show rulers",
"base_unit": "Base Unit:", "base_unit": "Base Unit:",
"grid": "Grid", "grid": "Grid",
"snapping_onoff": "Snapping on/off", "snapping_onoff": "Snapping on/off",
"snapping_stepsize": "Snapping Step-Size:", "snapping_stepsize": "Snapping Step-Size:",
"grid_color": "Grid color" "grid_color": "Grid color"
}, },
shape_cats: { shape_cats: {
"basic": "Basic", "basic": "Basic",
"object": "Objects", "object": "Objects",
"symbol": "Symbols", "symbol": "Symbols",
"arrow": "Arrows", "arrow": "Arrows",
"flowchart": "Flowchart", "flowchart": "Flowchart",
"animal": "Animals", "animal": "Animals",
"game": "Cards & Chess", "game": "Cards & Chess",
"dialog_balloon": "Dialog balloons", "dialog_balloon": "Dialog balloons",
"electronics": "Electronics", "electronics": "Electronics",
"math": "Mathematical", "math": "Mathematical",
"music": "Music", "music": "Music",
"misc": "Miscellaneous", "misc": "Miscellaneous",
"raphael_1": "raphaeljs.com set 1", "raphael_1": "raphaeljs.com set 1",
"raphael_2": "raphaeljs.com set 2" "raphael_2": "raphaeljs.com set 2"
}, },
imagelib: { imagelib: {
"select_lib": "Select an image library", "select_lib": "Select an image library",
"show_list": "Show library list", "show_list": "Show library list",
"import_single": "Import single", "import_single": "Import single",
"import_multi": "Import multiple", "import_multi": "Import multiple",
"open": "Open as new document" "open": "Open as new document"
}, },
notification: { notification: {
"invalidAttrValGiven": "數值給定錯誤", "invalidAttrValGiven": "數值給定錯誤",
"noContentToFitTo": "找不到符合的內容", "noContentToFitTo": "找不到符合的內容",
"dupeLayerName": "喔不!已經有另一個同樣名稱的圖層了!", "dupeLayerName": "喔不!已經有另一個同樣名稱的圖層了!",
"enterUniqueLayerName": "請輸入一個名稱不重複的", "enterUniqueLayerName": "請輸入一個名稱不重複的",
"enterNewLayerName": "請輸入新圖層的名稱", "enterNewLayerName": "請輸入新圖層的名稱",
"layerHasThatName": "圖層本來就是這個名稱(抱怨)", "layerHasThatName": "圖層本來就是這個名稱(抱怨)",
"QmoveElemsToLayer": "要搬移所選取的物件到'%s'層嗎?", "QmoveElemsToLayer": "要搬移所選取的物件到'%s'層嗎?",
"QwantToClear": "要清空圖像嗎?\n這會順便清空你的回復紀錄", "QwantToClear": "要清空圖像嗎?\n這會順便清空你的回復紀錄",
"QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!", "QwantToOpen": "Do you want to open a new file?\nThis will also erase your undo history!",
"QerrorsRevertToSource": "SVG原始碼解析錯誤\n要回復到原本的SVG原始碼嗎", "QerrorsRevertToSource": "SVG原始碼解析錯誤\n要回復到原本的SVG原始碼嗎",
"QignoreSourceChanges": "要忽略對SVG原始碼的更動嗎", "QignoreSourceChanges": "要忽略對SVG原始碼的更動嗎",
"featNotSupported": "未提供此功能", "featNotSupported": "未提供此功能",
"enterNewImgURL": "輸入新的圖片網址", "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.", "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.", "saveFromBrowser": "Select \"Save As...\" in your browser to save this image as a %s file.",
"noteTheseIssues": "Also note the following issues: ", "noteTheseIssues": "Also note the following issues: ",
"unsavedChanges": "There are unsaved changes.", "unsavedChanges": "There are unsaved changes.",
"enterNewLinkURL": "Enter the new hyperlink URL", "enterNewLinkURL": "Enter the new hyperlink URL",
"errorLoadingSVG": "Error: Unable to load SVG data", "errorLoadingSVG": "Error: Unable to load SVG data",
"URLloadFail": "Unable to load from URL", "URLloadFail": "Unable to load from URL",
"retrieving": "Retrieving \"%s\"..." "retrieving": "Retrieving \"%s\"..."
}, },
confirmSetStorage: { confirmSetStorage: {
message: "By default and where supported, SVG-Edit can store your editor " + message: "By default and where supported, SVG-Edit can store your editor " +
"preferences and SVG content locally on your machine so you do not " + "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 " + "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, " + "reasons, you do not wish to store this information on your machine, " +
"you can change away from the default option below.", "you can change away from the default option below.",
storagePrefsAndContent: "Store preferences and SVG content locally", storagePrefsAndContent: "Store preferences and SVG content locally",
storagePrefsOnly: "Only store preferences locally", storagePrefsOnly: "Only store preferences locally",
storagePrefs: "Store preferences locally", storagePrefs: "Store preferences locally",
storageNoPrefsOrContent: "Do not store my preferences or SVG content locally", storageNoPrefsOrContent: "Do not store my preferences or SVG content locally",
storageNoPrefs: "Do not store my preferences locally", storageNoPrefs: "Do not store my preferences locally",
rememberLabel: "Remember this choice?", rememberLabel: "Remember this choice?",
rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again." rememberTooltip: "If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again."
} }
}); });

View File

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

View File

@@ -32,10 +32,10 @@
* - Made adjustValue(0) only run on certain keyup events, not all. * - Made adjustValue(0) only run on certain keyup events, not all.
* *
* Tested in IE6, Opera9, Firefox 1.5 * Tested in IE6, Opera9, Firefox 1.5
* v1.0 11 Aug 2006 - George Adamson - First release * v1.0 11 Aug 2006 - George Adamson - First release
* v1.1 Aug 2006 - George Adamson - Minor enhancements * v1.1 Aug 2006 - George Adamson - Minor enhancements
* v1.2 27 Sep 2006 - Mark Gibson - Major enhancements * v1.2 27 Sep 2006 - Mark Gibson - Major enhancements
* v1.3a 28 Sep 2006 - George Adamson - Minor enhancements * v1.3a 28 Sep 2006 - George Adamson - Minor enhancements
* v1.4 18 Jun 2009 - Jeff Schiller - Added callback function * v1.4 18 Jun 2009 - Jeff Schiller - Added callback function
* v1.5 06 Jul 2009 - Jeff Schiller - Fixes for Opera. * v1.5 06 Jul 2009 - Jeff Schiller - Fixes for Opera.
* v1.6 13 Oct 2009 - Alexis Deveria - Added stepfunc function * v1.6 13 Oct 2009 - Alexis Deveria - Added stepfunc function
@@ -46,227 +46,227 @@
Sample usage: Sample usage:
// Create group of settings to initialise spinbutton(s). (Optional) // Create group of settings to initialise spinbutton(s). (Optional)
var myOptions = { var myOptions = {
min: 0, // Set lower limit. min: 0, // Set lower limit.
max: 100, // Set upper limit. max: 100, // Set upper limit.
step: 1, // Set increment size. step: 1, // Set increment size.
smallStep: 0.5, // Set shift-click increment size. smallStep: 0.5, // Set shift-click increment size.
spinClass: mySpinBtnClass, // CSS class to style the spinbutton. (Class also specifies url of the up/down button image.) spinClass: mySpinBtnClass, // CSS class to style the spinbutton. (Class also specifies url of the up/down button image.)
upClass: mySpinUpClass, // CSS class for style when mouse over up button. upClass: mySpinUpClass, // CSS class for style when mouse over up button.
downClass: mySpinDnClass // CSS class for style when mouse over down button. downClass: mySpinDnClass // CSS class for style when mouse over down button.
} }
$(document).ready(function(){ $(document).ready(function(){
// Initialise INPUT element(s) as SpinButtons: (passing options if desired) // Initialise INPUT element(s) as SpinButtons: (passing options if desired)
$("#myInputElement").SpinButton(myOptions); $("#myInputElement").SpinButton(myOptions);
}); });
*/ */
$.fn.SpinButton = function (cfg) { $.fn.SpinButton = function (cfg) {
'use strict'; 'use strict';
function coord (el, prop) { function coord (el, prop) {
var c = el[prop], b = document.body; var c = el[prop], b = document.body;
while ((el = el.offsetParent) && (el !== b)) { while ((el = el.offsetParent) && (el !== b)) {
if (!$.browser.msie || (el.currentStyle.position !== 'relative')) { if (!$.browser.msie || (el.currentStyle.position !== 'relative')) {
c += el[prop]; c += el[prop];
} }
} }
return c; return c;
} }
return this.each(function () { return this.each(function () {
this.repeating = false; this.repeating = false;
// Apply specified options or defaults: // Apply specified options or defaults:
// (Ought to refactor this some day to use $.extend() instead) // (Ought to refactor this some day to use $.extend() instead)
this.spinCfg = { this.spinCfg = {
// min: cfg && cfg.min ? Number(cfg.min) : null, // min: cfg && cfg.min ? Number(cfg.min) : null,
// max: cfg && cfg.max ? Number(cfg.max) : null, // max: cfg && cfg.max ? Number(cfg.max) : null,
min: cfg && !isNaN(parseFloat(cfg.min)) ? Number(cfg.min) : null, // Fixes bug with min:0 min: cfg && !isNaN(parseFloat(cfg.min)) ? Number(cfg.min) : null, // Fixes bug with min:0
max: cfg && !isNaN(parseFloat(cfg.max)) ? Number(cfg.max) : null, max: cfg && !isNaN(parseFloat(cfg.max)) ? Number(cfg.max) : null,
step: cfg && cfg.step ? Number(cfg.step) : 1, step: cfg && cfg.step ? Number(cfg.step) : 1,
stepfunc: cfg && cfg.stepfunc ? cfg.stepfunc : false, stepfunc: cfg && cfg.stepfunc ? cfg.stepfunc : false,
page: cfg && cfg.page ? Number(cfg.page) : 10, page: cfg && cfg.page ? Number(cfg.page) : 10,
upClass: cfg && cfg.upClass ? cfg.upClass : 'up', upClass: cfg && cfg.upClass ? cfg.upClass : 'up',
downClass: cfg && cfg.downClass ? cfg.downClass : 'down', downClass: cfg && cfg.downClass ? cfg.downClass : 'down',
reset: cfg && cfg.reset ? cfg.reset : this.value, reset: cfg && cfg.reset ? cfg.reset : this.value,
delay: cfg && cfg.delay ? Number(cfg.delay) : 500, delay: cfg && cfg.delay ? Number(cfg.delay) : 500,
interval: cfg && cfg.interval ? Number(cfg.interval) : 100, interval: cfg && cfg.interval ? Number(cfg.interval) : 100,
_btn_width: 20, _btn_width: 20,
_direction: null, _direction: null,
_delay: null, _delay: null,
_repeat: null, _repeat: null,
callback: cfg && cfg.callback ? cfg.callback : null callback: cfg && cfg.callback ? cfg.callback : null
}; };
// if a smallStep isn't supplied, use half the regular step // if a smallStep isn't supplied, use half the regular step
this.spinCfg.smallStep = cfg && cfg.smallStep ? cfg.smallStep : this.spinCfg.step / 2; this.spinCfg.smallStep = cfg && cfg.smallStep ? cfg.smallStep : this.spinCfg.step / 2;
this.adjustValue = function (i) { this.adjustValue = function (i) {
var v; var v;
if (isNaN(this.value)) { if (isNaN(this.value)) {
v = this.spinCfg.reset; v = this.spinCfg.reset;
} else if ($.isFunction(this.spinCfg.stepfunc)) { } else if ($.isFunction(this.spinCfg.stepfunc)) {
v = this.spinCfg.stepfunc(this, i); v = this.spinCfg.stepfunc(this, i);
} else { } else {
// weirdest javascript bug ever: 5.1 + 0.1 = 5.199999999 // weirdest javascript bug ever: 5.1 + 0.1 = 5.199999999
v = Number((Number(this.value) + Number(i)).toFixed(5)); v = Number((Number(this.value) + Number(i)).toFixed(5));
} }
if (this.spinCfg.min !== null) { v = Math.max(v, this.spinCfg.min); } if (this.spinCfg.min !== null) { v = Math.max(v, this.spinCfg.min); }
if (this.spinCfg.max !== null) { v = Math.min(v, this.spinCfg.max); } if (this.spinCfg.max !== null) { v = Math.min(v, this.spinCfg.max); }
this.value = v; this.value = v;
if ($.isFunction(this.spinCfg.callback)) { this.spinCfg.callback(this); } if ($.isFunction(this.spinCfg.callback)) { this.spinCfg.callback(this); }
}; };
$(this) $(this)
.addClass(cfg && cfg.spinClass ? cfg.spinClass : 'spin-button') .addClass(cfg && cfg.spinClass ? cfg.spinClass : 'spin-button')
.mousemove(function (e) { .mousemove(function (e) {
// Determine which button mouse is over, or not (spin direction): // Determine which button mouse is over, or not (spin direction):
var x = e.pageX || e.x; var x = e.pageX || e.x;
var y = e.pageY || e.y; var y = e.pageY || e.y;
var el = e.target || e.srcElement; var el = e.target || e.srcElement;
var scale = svgEditor.tool_scale || 1; var scale = svgEditor.tool_scale || 1;
var height = $(el).height() / 2; var height = $(el).height() / 2;
var direction = var direction =
(x > coord(el, 'offsetLeft') + (x > coord(el, 'offsetLeft') +
el.offsetWidth * scale - this.spinCfg._btn_width) el.offsetWidth * scale - this.spinCfg._btn_width)
? ((y < coord(el, 'offsetTop') + height * scale) ? 1 : -1) : 0; ? ((y < coord(el, 'offsetTop') + height * scale) ? 1 : -1) : 0;
if (direction !== this.spinCfg._direction) { if (direction !== this.spinCfg._direction) {
// Style up/down buttons: // Style up/down buttons:
switch (direction) { switch (direction) {
case 1: // Up arrow: case 1: // Up arrow:
$(this).removeClass(this.spinCfg.downClass).addClass(this.spinCfg.upClass); $(this).removeClass(this.spinCfg.downClass).addClass(this.spinCfg.upClass);
break; break;
case -1: // Down arrow: case -1: // Down arrow:
$(this).removeClass(this.spinCfg.upClass).addClass(this.spinCfg.downClass); $(this).removeClass(this.spinCfg.upClass).addClass(this.spinCfg.downClass);
break; break;
default: // Mouse is elsewhere in the textbox default: // Mouse is elsewhere in the textbox
$(this).removeClass(this.spinCfg.upClass).removeClass(this.spinCfg.downClass); $(this).removeClass(this.spinCfg.upClass).removeClass(this.spinCfg.downClass);
} }
// Set spin direction: // Set spin direction:
this.spinCfg._direction = direction; this.spinCfg._direction = direction;
} }
}) })
.mouseout(function () { .mouseout(function () {
// Reset up/down buttons to their normal appearance when mouse moves away: // Reset up/down buttons to their normal appearance when mouse moves away:
$(this).removeClass(this.spinCfg.upClass).removeClass(this.spinCfg.downClass); $(this).removeClass(this.spinCfg.upClass).removeClass(this.spinCfg.downClass);
this.spinCfg._direction = null; this.spinCfg._direction = null;
window.clearInterval(this.spinCfg._repeat); window.clearInterval(this.spinCfg._repeat);
window.clearTimeout(this.spinCfg._delay); window.clearTimeout(this.spinCfg._delay);
}) })
.mousedown(function (e) { .mousedown(function (e) {
if (e.button === 0 && this.spinCfg._direction !== 0) { if (e.button === 0 && this.spinCfg._direction !== 0) {
// Respond to click on one of the buttons: // Respond to click on one of the buttons:
var self = this; var self = this;
var stepSize = e.shiftKey ? self.spinCfg.smallStep : self.spinCfg.step; var stepSize = e.shiftKey ? self.spinCfg.smallStep : self.spinCfg.step;
var adjust = function () { var adjust = function () {
self.adjustValue(self.spinCfg._direction * stepSize); self.adjustValue(self.spinCfg._direction * stepSize);
}; };
adjust(); adjust();
// Initial delay before repeating adjustment // Initial delay before repeating adjustment
self.spinCfg._delay = window.setTimeout(function () { self.spinCfg._delay = window.setTimeout(function () {
adjust(); adjust();
// Repeat adjust at regular intervals // Repeat adjust at regular intervals
self.spinCfg._repeat = window.setInterval(adjust, self.spinCfg.interval); self.spinCfg._repeat = window.setInterval(adjust, self.spinCfg.interval);
}, self.spinCfg.delay); }, self.spinCfg.delay);
} }
}) })
.mouseup(function (e) { .mouseup(function (e) {
// Cancel repeating adjustment // Cancel repeating adjustment
window.clearInterval(this.spinCfg._repeat); window.clearInterval(this.spinCfg._repeat);
window.clearTimeout(this.spinCfg._delay); window.clearTimeout(this.spinCfg._delay);
}) })
.dblclick(function (e) { .dblclick(function (e) {
if ($.browser.msie) { if ($.browser.msie) {
this.adjustValue(this.spinCfg._direction * this.spinCfg.step); this.adjustValue(this.spinCfg._direction * this.spinCfg.step);
} }
}) })
.keydown(function (e) { .keydown(function (e) {
// Respond to up/down arrow keys. // Respond to up/down arrow keys.
switch (e.keyCode) { switch (e.keyCode) {
case 38: this.adjustValue(this.spinCfg.step); break; // Up case 38: this.adjustValue(this.spinCfg.step); break; // Up
case 40: this.adjustValue(-this.spinCfg.step); break; // Down case 40: this.adjustValue(-this.spinCfg.step); break; // Down
case 33: this.adjustValue(this.spinCfg.page); break; // PageUp case 33: this.adjustValue(this.spinCfg.page); break; // PageUp
case 34: this.adjustValue(-this.spinCfg.page); break; // PageDown case 34: this.adjustValue(-this.spinCfg.page); break; // PageDown
} }
}) })
/* /*
http://unixpapa.com/js/key.html describes the current state-of-affairs for http://unixpapa.com/js/key.html describes the current state-of-affairs for
key repeat events: key repeat events:
- Safari 3.1 changed their model so that keydown is reliably repeated going forward - Safari 3.1 changed their model so that keydown is reliably repeated going forward
- Firefox and Opera still only repeat the keypress event, not the keydown - Firefox and Opera still only repeat the keypress event, not the keydown
*/ */
.keypress(function (e) { .keypress(function (e) {
if (this.repeating) { if (this.repeating) {
// Respond to up/down arrow keys. // Respond to up/down arrow keys.
switch (e.keyCode) { switch (e.keyCode) {
case 38: this.adjustValue(this.spinCfg.step); break; // Up case 38: this.adjustValue(this.spinCfg.step); break; // Up
case 40: this.adjustValue(-this.spinCfg.step); break; // Down case 40: this.adjustValue(-this.spinCfg.step); break; // Down
case 33: this.adjustValue(this.spinCfg.page); break; // PageUp case 33: this.adjustValue(this.spinCfg.page); break; // PageUp
case 34: this.adjustValue(-this.spinCfg.page); break; // PageDown case 34: this.adjustValue(-this.spinCfg.page); break; // PageDown
} }
// we always ignore the first keypress event (use the keydown instead) // we always ignore the first keypress event (use the keydown instead)
} else { } else {
this.repeating = true; this.repeating = true;
} }
}) })
// clear the 'repeating' flag // clear the 'repeating' flag
.keyup(function (e) { .keyup(function (e) {
this.repeating = false; this.repeating = false;
switch (e.keyCode) { switch (e.keyCode) {
case 38: // Up case 38: // Up
case 40: // Down case 40: // Down
case 33: // PageUp case 33: // PageUp
case 34: // PageDown case 34: // PageDown
case 13: this.adjustValue(0); break; // Enter/Return case 13: this.adjustValue(0); break; // Enter/Return
} }
}) })
.bind('mousewheel', function (e) { .bind('mousewheel', function (e) {
// Respond to mouse wheel in IE. (It returns up/dn motion in multiples of 120) // Respond to mouse wheel in IE. (It returns up/dn motion in multiples of 120)
if (e.wheelDelta >= 120) { if (e.wheelDelta >= 120) {
this.adjustValue(this.spinCfg.step); this.adjustValue(this.spinCfg.step);
} else if (e.wheelDelta <= -120) { } else if (e.wheelDelta <= -120) {
this.adjustValue(-this.spinCfg.step); this.adjustValue(-this.spinCfg.step);
} }
e.preventDefault(); e.preventDefault();
}) })
.change(function (e) { .change(function (e) {
this.adjustValue(0); this.adjustValue(0);
}); });
if (this.addEventListener) { if (this.addEventListener) {
// Respond to mouse wheel in Firefox // Respond to mouse wheel in Firefox
this.addEventListener('DOMMouseScroll', function (e) { this.addEventListener('DOMMouseScroll', function (e) {
if (e.detail > 0) { if (e.detail > 0) {
this.adjustValue(-this.spinCfg.step); this.adjustValue(-this.spinCfg.step);
} else if (e.detail < 0) { } else if (e.detail < 0) {
this.adjustValue(this.spinCfg.step); this.adjustValue(this.spinCfg.step);
} }
e.preventDefault(); e.preventDefault();
}, false); }, false);
} }
}); });
}; };

View File

@@ -38,91 +38,91 @@ All options are optional and can include:
- 'h (number)': The icon heights - 'h (number)': The icon heights
- 'fallback (object literal)': List of raster images with each - 'fallback (object literal)': List of raster images with each
key being the SVG icon ID to replace, and the value the image file name. key being the SVG icon ID to replace, and the value the image file name.
- 'fallback_path (string)': The path to use for all images - 'fallback_path (string)': The path to use for all images
listed under "fallback" listed under "fallback"
- 'replace (boolean)': If set to true, HTML elements will be replaced by, - 'replace (boolean)': If set to true, HTML elements will be replaced by,
rather than include the SVG icon. rather than include the SVG icon.
- 'placement (object literal)': List with selectors for keys and SVG icon ids - 'placement (object literal)': List with selectors for keys and SVG icon ids
as values. This provides a custom method of adding icons. as values. This provides a custom method of adding icons.
- 'resize (object literal)': List with selectors for keys and numbers - 'resize (object literal)': List with selectors for keys and numbers
as values. This allows an easy way to resize specific icons. as values. This allows an easy way to resize specific icons.
- 'callback (function)': A function to call when all icons have been loaded. - 'callback (function)': A function to call when all icons have been loaded.
Includes an object literal as its argument with as keys all icon IDs and the Includes an object literal as its argument with as keys all icon IDs and the
icon as a jQuery object as its value. icon as a jQuery object as its value.
- 'id_match (boolean)': Automatically attempt to match SVG icon ids with - 'id_match (boolean)': Automatically attempt to match SVG icon ids with
corresponding HTML id (default: true) corresponding HTML id (default: true)
- 'no_img (boolean)': Prevent attempting to convert the icon into an <img> - 'no_img (boolean)': Prevent attempting to convert the icon into an <img>
element (may be faster, help for browser consistency) element (may be faster, help for browser consistency)
- 'svgz (boolean)': Indicate that the file is an SVGZ file, and thus not to - 'svgz (boolean)': Indicate that the file is an SVGZ file, and thus not to
parse as XML. SVGZ files add compression benefits, but getting data from parse as XML. SVGZ files add compression benefits, but getting data from
them fails in Firefox 2 and older. them fails in Firefox 2 and older.
5. To access an icon at a later point without using the callback, use this: 5. To access an icon at a later point without using the callback, use this:
$.getSvgIcon(id (string)); $.getSvgIcon(id (string));
This will return the icon (as jQuery object) with a given ID. This will return the icon (as jQuery object) with a given ID.
6. To resize icons at a later point without using the callback, use this: 6. To resize icons at a later point without using the callback, use this:
$.resizeSvgIcons(resizeOptions) (use the same way as the "resize" parameter) $.resizeSvgIcons(resizeOptions) (use the same way as the "resize" parameter)
Example usage #1: Example usage #1:
$(function() { $(function() {
$.svgIcons('my_icon_set.svg'); // The SVG file that contains all icons $.svgIcons('my_icon_set.svg'); // The SVG file that contains all icons
// No options have been set, so all icons will automatically be inserted // No options have been set, so all icons will automatically be inserted
// into HTML elements that match the same IDs. // into HTML elements that match the same IDs.
}); });
Example usage #2: Example usage #2:
$(function() { $(function() {
$.svgIcons('my_icon_set.svg', { // The SVG file that contains all icons $.svgIcons('my_icon_set.svg', { // The SVG file that contains all icons
callback: function(icons) { // Custom callback function that sets click callback: function(icons) { // Custom callback function that sets click
// events for each icon // events for each icon
$.each(icons, function(id, icon) { $.each(icons, function(id, icon) {
icon.click(function() { icon.click(function() {
alert('You clicked on the icon with id ' + id); alert('You clicked on the icon with id ' + id);
}); });
}); });
} }
}); //The SVG file that contains all icons }); //The SVG file that contains all icons
}); });
Example usage #3: Example usage #3:
$(function() { $(function() {
$.svgIcons('my_icon_set.svgz', { // The SVGZ file that contains all icons $.svgIcons('my_icon_set.svgz', { // The SVGZ file that contains all icons
w: 32, // All icons will be 32px wide w: 32, // All icons will be 32px wide
h: 32, // All icons will be 32px high h: 32, // All icons will be 32px high
fallback_path: 'icons/', // All fallback files can be found here fallback_path: 'icons/', // All fallback files can be found here
fallback: { fallback: {
'#open_icon': 'open.png', // The "open.png" will be appended to the '#open_icon': 'open.png', // The "open.png" will be appended to the
// HTML element with ID "open_icon" // HTML element with ID "open_icon"
'#close_icon': 'close.png', '#close_icon': 'close.png',
'#save_icon': 'save.png' '#save_icon': 'save.png'
}, },
placement: {'.open_icon','open'}, // The "open" icon will be added placement: {'.open_icon','open'}, // The "open" icon will be added
// to all elements with class "open_icon" // to all elements with class "open_icon"
resize: function() { resize: function() {
'#save_icon .svg_icon': 64 // The "save" icon will be resized to 64 x 64px '#save_icon .svg_icon': 64 // The "save" icon will be resized to 64 x 64px
}, },
callback: function(icons) { // Sets background color for "close" icon callback: function(icons) { // Sets background color for "close" icon
icons['close'].css('background','red'); icons['close'].css('background','red');
}, },
svgz: true // Indicates that an SVGZ file is being used svgz: true // Indicates that an SVGZ file is being used
}) })
}); });
*/ */
@@ -130,357 +130,357 @@ $(function() {
var svgIcons = {}, fixIDs; var svgIcons = {}, fixIDs;
$.svgIcons = function (file, opts) { $.svgIcons = function (file, opts) {
var svgns = 'http://www.w3.org/2000/svg', var svgns = 'http://www.w3.org/2000/svg',
xlinkns = 'http://www.w3.org/1999/xlink', xlinkns = 'http://www.w3.org/1999/xlink',
iconW = opts.w || 24, iconW = opts.w || 24,
iconH = opts.h || 24, iconH = opts.h || 24,
elems, svgdoc, testImg, elems, svgdoc, testImg,
iconsMade = false, dataLoaded = false, loadAttempts = 0, iconsMade = false, dataLoaded = false, loadAttempts = 0,
// ua = navigator.userAgent, // ua = navigator.userAgent,
isOpera = !!window.opera, isOpera = !!window.opera,
// isSafari = (ua.indexOf('Safari/') > -1 && ua.indexOf('Chrome/') === -1), // isSafari = (ua.indexOf('Safari/') > -1 && ua.indexOf('Chrome/') === -1),
dataPre = 'data:image/svg+xml;charset=utf-8;base64,'; dataPre = 'data:image/svg+xml;charset=utf-8;base64,';
if (opts.svgz) { if (opts.svgz) {
var dataEl = $('<object data="' + file + '" type=image/svg+xml>').appendTo('body').hide(); var dataEl = $('<object data="' + file + '" type=image/svg+xml>').appendTo('body').hide();
try { try {
svgdoc = dataEl[0].contentDocument; svgdoc = dataEl[0].contentDocument;
dataEl.load(getIcons); dataEl.load(getIcons);
getIcons(0, true); // Opera will not run "load" event if file is already cached getIcons(0, true); // Opera will not run "load" event if file is already cached
} catch (err1) { } catch (err1) {
useFallback(); useFallback();
} }
} else { } else {
var parser = new DOMParser(); var parser = new DOMParser();
$.ajax({ $.ajax({
url: file, url: file,
dataType: 'string', dataType: 'string',
success: function (data) { success: function (data) {
if (!data) { if (!data) {
$(useFallback); $(useFallback);
return; return;
} }
svgdoc = parser.parseFromString(data, 'text/xml'); svgdoc = parser.parseFromString(data, 'text/xml');
$(function () { $(function () {
getIcons('ajax'); getIcons('ajax');
}); });
}, },
error: function (err) { error: function (err) {
// TODO: Fix Opera widget icon bug // TODO: Fix Opera widget icon bug
if (window.opera) { if (window.opera) {
$(function () { $(function () {
useFallback(); useFallback();
}); });
} else { } else {
if (err.responseText) { if (err.responseText) {
svgdoc = parser.parseFromString(err.responseText, 'text/xml'); svgdoc = parser.parseFromString(err.responseText, 'text/xml');
if (!svgdoc.childNodes.length) { if (!svgdoc.childNodes.length) {
$(useFallback); $(useFallback);
} }
$(function () { $(function () {
getIcons('ajax'); getIcons('ajax');
}); });
} else { } else {
$(useFallback); $(useFallback);
} }
} }
} }
}); });
} }
function getIcons (evt, noWait) { function getIcons (evt, noWait) {
if (evt !== 'ajax') { if (evt !== 'ajax') {
if (dataLoaded) return; if (dataLoaded) return;
// Webkit sometimes says svgdoc is undefined, other times // Webkit sometimes says svgdoc is undefined, other times
// it fails to load all nodes. Thus we must make sure the "eof" // it fails to load all nodes. Thus we must make sure the "eof"
// element is loaded. // element is loaded.
svgdoc = dataEl[0].contentDocument; // Needed again for Webkit svgdoc = dataEl[0].contentDocument; // Needed again for Webkit
var isReady = (svgdoc && svgdoc.getElementById('svg_eof')); var isReady = (svgdoc && svgdoc.getElementById('svg_eof'));
if (!isReady && !(noWait && isReady)) { if (!isReady && !(noWait && isReady)) {
loadAttempts++; loadAttempts++;
if (loadAttempts < 50) { if (loadAttempts < 50) {
setTimeout(getIcons, 20); setTimeout(getIcons, 20);
} else { } else {
useFallback(); useFallback();
dataLoaded = true; dataLoaded = true;
} }
return; return;
} }
dataLoaded = true; dataLoaded = true;
} }
elems = $(svgdoc.firstChild).children(); // .getElementsByTagName('foreignContent'); elems = $(svgdoc.firstChild).children(); // .getElementsByTagName('foreignContent');
if (!opts.no_img) { if (!opts.no_img) {
var testSrc = dataPre + 'PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNzUiIGhlaWdodD0iMjc1Ij48L3N2Zz4%3D'; var testSrc = dataPre + 'PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNzUiIGhlaWdodD0iMjc1Ij48L3N2Zz4%3D';
testImg = $(new Image()).attr({ testImg = $(new Image()).attr({
src: testSrc, src: testSrc,
width: 0, width: 0,
height: 0 height: 0
}).appendTo('body') }).appendTo('body')
.load(function () { .load(function () {
// Safari 4 crashes, Opera and Chrome don't // Safari 4 crashes, Opera and Chrome don't
makeIcons(true); makeIcons(true);
}).error(function () { }).error(function () {
makeIcons(); makeIcons();
}); });
} else { } else {
setTimeout(function () { setTimeout(function () {
if (!iconsMade) makeIcons(); if (!iconsMade) makeIcons();
}, 500); }, 500);
} }
} }
var setIcon = function (target, icon, id, setID) { var setIcon = function (target, icon, id, setID) {
if (isOpera) icon.css('visibility', 'hidden'); if (isOpera) icon.css('visibility', 'hidden');
if (opts.replace) { if (opts.replace) {
if (setID) icon.attr('id', id); if (setID) icon.attr('id', id);
var cl = target.attr('class'); var cl = target.attr('class');
if (cl) icon.attr('class', 'svg_icon ' + cl); if (cl) icon.attr('class', 'svg_icon ' + cl);
target.replaceWith(icon); target.replaceWith(icon);
} else { } else {
target.append(icon); target.append(icon);
} }
if (isOpera) { if (isOpera) {
setTimeout(function () { setTimeout(function () {
icon.removeAttr('style'); icon.removeAttr('style');
}, 1); }, 1);
} }
}; };
var holder; var holder;
var addIcon = function (icon, id) { var addIcon = function (icon, id) {
if (opts.id_match === undefined || opts.id_match !== false) { if (opts.id_match === undefined || opts.id_match !== false) {
setIcon(holder, icon, id, true); setIcon(holder, icon, id, true);
} }
svgIcons[id] = icon; svgIcons[id] = icon;
}; };
function makeIcons (toImage, fallback) { function makeIcons (toImage, fallback) {
if (iconsMade) return; if (iconsMade) return;
if (opts.no_img) toImage = false; if (opts.no_img) toImage = false;
var tempHolder; var tempHolder;
if (toImage) { if (toImage) {
tempHolder = $(document.createElement('div')); tempHolder = $(document.createElement('div'));
tempHolder.hide().appendTo('body'); tempHolder.hide().appendTo('body');
} }
if (fallback) { if (fallback) {
var path = opts.fallback_path || ''; var path = opts.fallback_path || '';
$.each(fallback, function (id, imgsrc) { $.each(fallback, function (id, imgsrc) {
holder = $('#' + id); holder = $('#' + id);
var icon = $(new Image()) var icon = $(new Image())
.attr({ .attr({
'class': 'svg_icon', 'class': 'svg_icon',
src: path + imgsrc, src: path + imgsrc,
'width': iconW, 'width': iconW,
'height': iconH, 'height': iconH,
'alt': 'icon' 'alt': 'icon'
}); });
addIcon(icon, id); addIcon(icon, id);
}); });
} else { } else {
var len = elems.length; var len = elems.length;
for (var i = 0; i < len; i++) { for (var i = 0; i < len; i++) {
var elem = elems[i]; var elem = elems[i];
var id = elem.id; var id = elem.id;
if (id === 'svg_eof') break; if (id === 'svg_eof') break;
holder = $('#' + id); holder = $('#' + id);
var svg = elem.getElementsByTagNameNS(svgns, 'svg')[0]; var svg = elem.getElementsByTagNameNS(svgns, 'svg')[0];
var svgroot = document.createElementNS(svgns, 'svg'); var svgroot = document.createElementNS(svgns, 'svg');
// Per https://www.w3.org/TR/xml-names11/#defaulting, the namespace for // Per https://www.w3.org/TR/xml-names11/#defaulting, the namespace for
// attributes should have no value. // attributes should have no value.
svgroot.setAttributeNS(null, 'viewBox', [0, 0, iconW, iconH].join(' ')); svgroot.setAttributeNS(null, 'viewBox', [0, 0, iconW, iconH].join(' '));
// Make flexible by converting width/height to viewBox // Make flexible by converting width/height to viewBox
var w = svg.getAttribute('width'); var w = svg.getAttribute('width');
var h = svg.getAttribute('height'); var h = svg.getAttribute('height');
svg.removeAttribute('width'); svg.removeAttribute('width');
svg.removeAttribute('height'); svg.removeAttribute('height');
var vb = svg.getAttribute('viewBox'); var vb = svg.getAttribute('viewBox');
if (!vb) { if (!vb) {
svg.setAttribute('viewBox', [0, 0, w, h].join(' ')); svg.setAttribute('viewBox', [0, 0, w, h].join(' '));
} }
// Not using jQuery to be a bit faster // Not using jQuery to be a bit faster
svgroot.setAttribute('xmlns', svgns); svgroot.setAttribute('xmlns', svgns);
svgroot.setAttribute('width', iconW); svgroot.setAttribute('width', iconW);
svgroot.setAttribute('height', iconH); svgroot.setAttribute('height', iconH);
svgroot.setAttribute('xmlns:xlink', xlinkns); svgroot.setAttribute('xmlns:xlink', xlinkns);
svgroot.setAttribute('class', 'svg_icon'); svgroot.setAttribute('class', 'svg_icon');
// Without cloning, Firefox will make another GET request. // Without cloning, Firefox will make another GET request.
// With cloning, causes issue in Opera/Win/Non-EN // With cloning, causes issue in Opera/Win/Non-EN
if (!isOpera) svg = svg.cloneNode(true); if (!isOpera) svg = svg.cloneNode(true);
svgroot.appendChild(svg); svgroot.appendChild(svg);
var icon; var icon;
if (toImage) { if (toImage) {
tempHolder.empty().append(svgroot); tempHolder.empty().append(svgroot);
var str = dataPre + encode64(unescape(encodeURIComponent(new XMLSerializer().serializeToString(svgroot)))); var str = dataPre + encode64(unescape(encodeURIComponent(new XMLSerializer().serializeToString(svgroot))));
icon = $(new Image()) icon = $(new Image())
.attr({'class': 'svg_icon', src: str}); .attr({'class': 'svg_icon', src: str});
} else { } else {
icon = fixIDs($(svgroot), i); icon = fixIDs($(svgroot), i);
} }
addIcon(icon, id); addIcon(icon, id);
} }
} }
if (opts.placement) { if (opts.placement) {
$.each(opts.placement, function (sel, id) { $.each(opts.placement, function (sel, id) {
if (!svgIcons[id]) return; if (!svgIcons[id]) return;
$(sel).each(function (i) { $(sel).each(function (i) {
var copy = svgIcons[id].clone(); var copy = svgIcons[id].clone();
if (i > 0 && !toImage) copy = fixIDs(copy, i, true); if (i > 0 && !toImage) copy = fixIDs(copy, i, true);
setIcon($(this), copy, id); setIcon($(this), copy, id);
}); });
}); });
} }
if (!fallback) { if (!fallback) {
if (toImage) tempHolder.remove(); if (toImage) tempHolder.remove();
if (dataEl) dataEl.remove(); if (dataEl) dataEl.remove();
if (testImg) testImg.remove(); if (testImg) testImg.remove();
} }
if (opts.resize) $.resizeSvgIcons(opts.resize); if (opts.resize) $.resizeSvgIcons(opts.resize);
iconsMade = true; iconsMade = true;
if (opts.callback) opts.callback(svgIcons); if (opts.callback) opts.callback(svgIcons);
} }
fixIDs = function (svgEl, svgNum, force) { fixIDs = function (svgEl, svgNum, force) {
var defs = svgEl.find('defs'); var defs = svgEl.find('defs');
if (!defs.length) return svgEl; if (!defs.length) return svgEl;
var idElems; var idElems;
if (isOpera) { if (isOpera) {
idElems = defs.find('*').filter(function () { idElems = defs.find('*').filter(function () {
return !!this.id; return !!this.id;
}); });
} else { } else {
idElems = defs.find('[id]'); idElems = defs.find('[id]');
} }
var allElems = svgEl[0].getElementsByTagName('*'), len = allElems.length; var allElems = svgEl[0].getElementsByTagName('*'), len = allElems.length;
idElems.each(function (i) { idElems.each(function (i) {
var id = this.id; var id = this.id;
/* /*
var noDupes = ($(svgdoc).find('#' + id).length <= 1); var noDupes = ($(svgdoc).find('#' + id).length <= 1);
if (isOpera) noDupes = false; // Opera didn't clone svgEl, so not reliable if (isOpera) noDupes = false; // Opera didn't clone svgEl, so not reliable
if(!force && noDupes) return; if(!force && noDupes) return;
*/ */
var newId = 'x' + id + svgNum + i; var newId = 'x' + id + svgNum + i;
this.id = newId; this.id = newId;
var oldVal = 'url(#' + id + ')'; var oldVal = 'url(#' + id + ')';
var newVal = 'url(#' + newId + ')'; var newVal = 'url(#' + newId + ')';
// Selector method, possibly faster but fails in Opera / jQuery 1.4.3 // Selector method, possibly faster but fails in Opera / jQuery 1.4.3
// svgEl.find('[fill="url(#' + id + ')"]').each(function() { // svgEl.find('[fill="url(#' + id + ')"]').each(function() {
// this.setAttribute('fill', 'url(#' + newId + ')'); // this.setAttribute('fill', 'url(#' + newId + ')');
// }).end().find('[stroke="url(#' + id + ')"]').each(function() { // }).end().find('[stroke="url(#' + id + ')"]').each(function() {
// this.setAttribute('stroke', 'url(#' + newId + ')'); // this.setAttribute('stroke', 'url(#' + newId + ')');
// }).end().find('use').each(function() { // }).end().find('use').each(function() {
// if(this.getAttribute('xlink:href') == '#' + id) { // if(this.getAttribute('xlink:href') == '#' + id) {
// this.setAttributeNS(xlinkns,'href','#' + newId); // this.setAttributeNS(xlinkns,'href','#' + newId);
// } // }
// }).end().find('[filter="url(#' + id + ')"]').each(function() { // }).end().find('[filter="url(#' + id + ')"]').each(function() {
// this.setAttribute('filter', 'url(#' + newId + ')'); // this.setAttribute('filter', 'url(#' + newId + ')');
// }); // });
for (i = 0; i < len; i++) { for (i = 0; i < len; i++) {
var elem = allElems[i]; var elem = allElems[i];
if (elem.getAttribute('fill') === oldVal) { if (elem.getAttribute('fill') === oldVal) {
elem.setAttribute('fill', newVal); elem.setAttribute('fill', newVal);
} }
if (elem.getAttribute('stroke') === oldVal) { if (elem.getAttribute('stroke') === oldVal) {
elem.setAttribute('stroke', newVal); elem.setAttribute('stroke', newVal);
} }
if (elem.getAttribute('filter') === oldVal) { if (elem.getAttribute('filter') === oldVal) {
elem.setAttribute('filter', newVal); elem.setAttribute('filter', newVal);
} }
} }
}); });
return svgEl; return svgEl;
}; };
function useFallback () { function useFallback () {
if (file.indexOf('.svgz') > -1) { if (file.indexOf('.svgz') > -1) {
var regFile = file.replace('.svgz', '.svg'); var regFile = file.replace('.svgz', '.svg');
if (window.console) { if (window.console) {
console.log('.svgz failed, trying with .svg'); console.log('.svgz failed, trying with .svg');
} }
$.svgIcons(regFile, opts); $.svgIcons(regFile, opts);
} else if (opts.fallback) { } else if (opts.fallback) {
makeIcons(false, opts.fallback); makeIcons(false, opts.fallback);
} }
} }
function encode64 (input) { function encode64 (input) {
// base64 strings are 4/3 larger than the original string // base64 strings are 4/3 larger than the original string
if (window.btoa) return window.btoa(input); if (window.btoa) return window.btoa(input);
var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; var _keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
var output = new Array(Math.floor((input.length + 2) / 3) * 4); var output = new Array(Math.floor((input.length + 2) / 3) * 4);
var chr1, chr2, chr3; var chr1, chr2, chr3;
var enc1, enc2, enc3, enc4; var enc1, enc2, enc3, enc4;
var i = 0, p = 0; var i = 0, p = 0;
do { do {
chr1 = input.charCodeAt(i++); chr1 = input.charCodeAt(i++);
chr2 = input.charCodeAt(i++); chr2 = input.charCodeAt(i++);
chr3 = input.charCodeAt(i++); chr3 = input.charCodeAt(i++);
enc1 = chr1 >> 2; enc1 = chr1 >> 2;
enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
enc3 = ((chr2 & 15) << 2) | (chr3 >> 6); enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
enc4 = chr3 & 63; enc4 = chr3 & 63;
if (isNaN(chr2)) { if (isNaN(chr2)) {
enc3 = enc4 = 64; enc3 = enc4 = 64;
} else if (isNaN(chr3)) { } else if (isNaN(chr3)) {
enc4 = 64; enc4 = 64;
} }
output[p++] = _keyStr.charAt(enc1); output[p++] = _keyStr.charAt(enc1);
output[p++] = _keyStr.charAt(enc2); output[p++] = _keyStr.charAt(enc2);
output[p++] = _keyStr.charAt(enc3); output[p++] = _keyStr.charAt(enc3);
output[p++] = _keyStr.charAt(enc4); output[p++] = _keyStr.charAt(enc4);
} while (i < input.length); } while (i < input.length);
return output.join(''); return output.join('');
} }
}; };
$.getSvgIcon = function (id, uniqueClone) { $.getSvgIcon = function (id, uniqueClone) {
var icon = svgIcons[id]; var icon = svgIcons[id];
if (uniqueClone && icon) { if (uniqueClone && icon) {
icon = fixIDs(icon, 0, true).clone(true); icon = fixIDs(icon, 0, true).clone(true);
} }
return icon; return icon;
}; };
$.resizeSvgIcons = function (obj) { $.resizeSvgIcons = function (obj) {
// FF2 and older don't detect .svg_icon, so we change it detect svg elems instead // FF2 and older don't detect .svg_icon, so we change it detect svg elems instead
var changeSel = !$('.svg_icon:first').length; var changeSel = !$('.svg_icon:first').length;
$.each(obj, function (sel, size) { $.each(obj, function (sel, size) {
var arr = $.isArray(size); var arr = $.isArray(size);
var w = arr ? size[0] : size, var w = arr ? size[0] : size,
h = arr ? size[1] : size; h = arr ? size[1] : size;
if (changeSel) { if (changeSel) {
sel = sel.replace(/\.svg_icon/g, 'svg'); sel = sel.replace(/\.svg_icon/g, 'svg');
} }
$(sel).each(function () { $(sel).each(function () {
this.setAttribute('width', w); this.setAttribute('width', w);
this.setAttribute('height', h); this.setAttribute('height', h);
if (window.opera && window.widget) { if (window.opera && window.widget) {
this.parentNode.style.width = w + 'px'; this.parentNode.style.width = w + 'px';
this.parentNode.style.height = h + 'px'; this.parentNode.style.height = h + 'px';
} }
}); });
}); });
}; };
})(jQuery); })(jQuery);

View File

@@ -1,5 +1,5 @@
/* eslint-disable no-var */ /* eslint-disable no-var */
function startSvgEdit () { // eslint-disable-line no-unused-vars function startSvgEdit () { // eslint-disable-line no-unused-vars
var url = 'chrome://svg-edit/content/editor/svg-editor.html'; var url = 'chrome://svg-edit/content/editor/svg-editor.html';
window.openDialog(url, 'SVG Editor', 'width=1024,height=700,menubar=no,toolbar=no'); window.openDialog(url, 'SVG Editor', 'width=1024,height=700,menubar=no,toolbar=no');
} }

View File

@@ -2,55 +2,55 @@
/* global $, Components, svgCanvas, netscape */ /* global $, Components, svgCanvas, netscape */
// Note: This JavaScript file must be included as the last script on the main HTML editor page to override the open/save handlers // Note: This JavaScript file must be included as the last script on the main HTML editor page to override the open/save handlers
$(function () { $(function () {
if (!window.Components) return; if (!window.Components) return;
function mozFilePicker (readflag) { function mozFilePicker (readflag) {
var fp = window.Components.classes['@mozilla.org/filepicker;1'] var fp = window.Components.classes['@mozilla.org/filepicker;1']
.createInstance(Components.interfaces.nsIFilePicker); .createInstance(Components.interfaces.nsIFilePicker);
if (readflag) fp.init(window, 'Pick a SVG file', fp.modeOpen); if (readflag) fp.init(window, 'Pick a SVG file', fp.modeOpen);
else fp.init(window, 'Pick a SVG file', fp.modeSave); else fp.init(window, 'Pick a SVG file', fp.modeSave);
fp.defaultExtension = '*.svg'; fp.defaultExtension = '*.svg';
fp.show(); fp.show();
return fp.file; return fp.file;
} }
svgCanvas.setCustomHandlers({ svgCanvas.setCustomHandlers({
open: function () { open: function () {
try { try {
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect'); netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var file = mozFilePicker(true); var file = mozFilePicker(true);
if (!file) { if (!file) {
return null; return null;
} }
var inputStream = Components.classes['@mozilla.org/network/file-input-stream;1'].createInstance(Components.interfaces.nsIFileInputStream); var inputStream = Components.classes['@mozilla.org/network/file-input-stream;1'].createInstance(Components.interfaces.nsIFileInputStream);
inputStream.init(file, 0x01, parseInt('00004', 8), null); inputStream.init(file, 0x01, parseInt('00004', 8), null);
var sInputStream = Components.classes['@mozilla.org/scriptableinputstream;1'].createInstance(Components.interfaces.nsIScriptableInputStream); var sInputStream = Components.classes['@mozilla.org/scriptableinputstream;1'].createInstance(Components.interfaces.nsIScriptableInputStream);
sInputStream.init(inputStream); sInputStream.init(inputStream);
svgCanvas.setSvgString(sInputStream.read(sInputStream.available())); svgCanvas.setSvgString(sInputStream.read(sInputStream.available()));
} catch (e) { } catch (e) {
console.log('Exception while attempting to load' + e); console.log('Exception while attempting to load' + e);
} }
}, },
save: function (svg, str) { save: function (svg, str) {
try { try {
var file = mozFilePicker(false); var file = mozFilePicker(false);
if (!file) { if (!file) {
return; return;
} }
if (!file.exists()) { if (!file.exists()) {
file.create(0, parseInt('0664', 8)); file.create(0, parseInt('0664', 8));
} }
var out = Components.classes['@mozilla.org/network/file-output-stream;1'].createInstance(Components.interfaces.nsIFileOutputStream); var out = Components.classes['@mozilla.org/network/file-output-stream;1'].createInstance(Components.interfaces.nsIFileOutputStream);
out.init(file, 0x20 | 0x02, parseInt('00004', 8), null); out.init(file, 0x20 | 0x02, parseInt('00004', 8), null);
out.write(str, str.length); out.write(str, str.length);
out.flush(); out.flush();
out.close(); out.close();
} catch (e) { } catch (e) {
alert(e); alert(e);
} }
} }
}); });
}); });

View File

@@ -2,58 +2,58 @@
/* globals $, svgCanvas */ /* globals $, svgCanvas */
// Note: This JavaScript file must be included as the last script on the main HTML editor page to override the open/save handlers // Note: This JavaScript file must be included as the last script on the main HTML editor page to override the open/save handlers
$(function () { $(function () {
if (window.opera && window.opera.io && window.opera.io.filesystem) { if (window.opera && window.opera.io && window.opera.io.filesystem) {
svgCanvas.setCustomHandlers({ svgCanvas.setCustomHandlers({
open: function () { open: function () {
try { try {
window.opera.io.filesystem.browseForFile( window.opera.io.filesystem.browseForFile(
new Date().getTime(), /* mountpoint name */ new Date().getTime(), /* mountpoint name */
'', /* default location */ '', /* default location */
function (file) { function (file) {
try { try {
if (file) { if (file) {
var fstream = file.open(file, 'r'); var fstream = file.open(file, 'r');
var output = ''; var output = '';
while (!fstream.eof) { while (!fstream.eof) {
output += fstream.readLine(); output += fstream.readLine();
} }
svgCanvas.setSvgString(output); /* 'this' is bound to the filestream object here */ svgCanvas.setSvgString(output); /* 'this' is bound to the filestream object here */
} }
} catch (e) { } catch (e) {
console.log('Reading file failed.'); console.log('Reading file failed.');
} }
}, },
false, /* not persistent */ false, /* not persistent */
false, /* no multiple selections */ false, /* no multiple selections */
'*.svg' /* file extension filter */ '*.svg' /* file extension filter */
); );
} catch (e) { } catch (e) {
console.log('Open file failed.'); console.log('Open file failed.');
} }
}, },
save: function (window, svg) { save: function (window, svg) {
try { try {
window.opera.io.filesystem.browseForSave( window.opera.io.filesystem.browseForSave(
new Date().getTime(), /* mountpoint name */ new Date().getTime(), /* mountpoint name */
'', /* default location */ '', /* default location */
function (file) { function (file) {
try { try {
if (file) { if (file) {
var fstream = file.open(file, 'w'); var fstream = file.open(file, 'w');
fstream.write(svg, 'UTF-8'); fstream.write(svg, 'UTF-8');
fstream.close(); fstream.close();
} }
} catch (e) { } catch (e) {
console.log('Write to file failed.'); console.log('Write to file failed.');
} }
}, },
false /* not persistent */ false /* not persistent */
); );
} catch (e) { } catch (e) {
console.log('Save file failed.'); console.log('Save file failed.');
} }
} }
}); });
} }
}); });

View File

@@ -7,84 +7,84 @@ var ctr = 0;
var spaces = /\s+/, a1 = ['']; var spaces = /\s+/, a1 = [''];
var toArray = function (list) { var toArray = function (list) {
return Array.prototype.slice.call(list || [], 0); return Array.prototype.slice.call(list || [], 0);
}; };
var byId = function (id) { var byId = function (id) {
if (typeof id === 'string') { return doc.getElementById(id); } if (typeof id === 'string') { return doc.getElementById(id); }
return id; return id;
}; };
var query = function (query, root) { var query = function (query, root) {
if (!query) { return []; } if (!query) { return []; }
if (typeof query !== 'string') { return toArray(query); } if (typeof query !== 'string') { return toArray(query); }
if (typeof root === 'string') { if (typeof root === 'string') {
root = byId(root); root = byId(root);
if (!root) { return []; } if (!root) { return []; }
} }
root = root || document; root = root || document;
var rootIsDoc = (root.nodeType === 9); var rootIsDoc = (root.nodeType === 9);
var doc = rootIsDoc ? root : (root.ownerDocument || document); var doc = rootIsDoc ? root : (root.ownerDocument || document);
// rewrite the query to be ID rooted // rewrite the query to be ID rooted
if (!rootIsDoc || ('>~+'.indexOf(query.charAt(0)) >= 0)) { if (!rootIsDoc || ('>~+'.indexOf(query.charAt(0)) >= 0)) {
root.id = root.id || ('qUnique' + (ctr++)); root.id = root.id || ('qUnique' + (ctr++));
query = '#' + root.id + ' ' + query; query = '#' + root.id + ' ' + query;
} }
// don't choke on something like ".yada.yada >" // don't choke on something like ".yada.yada >"
if ('>~+'.indexOf(query.slice(-1)) >= 0) { query += ' *'; } if ('>~+'.indexOf(query.slice(-1)) >= 0) { query += ' *'; }
return toArray(doc.querySelectorAll(query)); return toArray(doc.querySelectorAll(query));
}; };
var strToArray = function (s) { var strToArray = function (s) {
if (typeof s === 'string' || s instanceof String) { if (typeof s === 'string' || s instanceof String) {
if (s.indexOf(' ') < 0) { if (s.indexOf(' ') < 0) {
a1[0] = s; a1[0] = s;
return a1; return a1;
} }
return s.split(spaces); return s.split(spaces);
} }
return s; return s;
}; };
var addClass = function (node, classStr) { var addClass = function (node, classStr) {
classStr = strToArray(classStr); classStr = strToArray(classStr);
var cls = ' ' + node.className + ' '; var cls = ' ' + node.className + ' ';
for (var i = 0, len = classStr.length, c; i < len; ++i) { for (var i = 0, len = classStr.length, c; i < len; ++i) {
c = classStr[i]; c = classStr[i];
if (c && cls.indexOf(' ' + c + ' ') < 0) { if (c && cls.indexOf(' ' + c + ' ') < 0) {
cls += c + ' '; cls += c + ' ';
} }
} }
node.className = cls.trim(); node.className = cls.trim();
}; };
var removeClass = function (node, classStr) { var removeClass = function (node, classStr) {
var cls; var cls;
if (classStr !== undefined) { if (classStr !== undefined) {
classStr = strToArray(classStr); classStr = strToArray(classStr);
cls = ' ' + node.className + ' '; cls = ' ' + node.className + ' ';
for (var i = 0, len = classStr.length; i < len; ++i) { for (var i = 0, len = classStr.length; i < len; ++i) {
cls = cls.replace(' ' + classStr[i] + ' ', ' '); cls = cls.replace(' ' + classStr[i] + ' ', ' ');
} }
cls = cls.trim(); cls = cls.trim();
} else { } else {
cls = ''; cls = '';
} }
if (node.className !== cls) { if (node.className !== cls) {
node.className = cls; node.className = cls;
} }
}; };
var toggleClass = function (node, classStr) { var toggleClass = function (node, classStr) {
var cls = ' ' + node.className + ' '; var cls = ' ' + node.className + ' ';
if (cls.indexOf(' ' + classStr.trim() + ' ') >= 0) { if (cls.indexOf(' ' + classStr.trim() + ' ') >= 0) {
removeClass(node, classStr); removeClass(node, classStr);
} else { } else {
addClass(node, classStr); addClass(node, classStr);
} }
}; };
var ua = navigator.userAgent; var ua = navigator.userAgent;
@@ -93,237 +93,237 @@ var isWK = parseFloat(ua.split('WebKit/')[1]) || undefined;
var isOpera = parseFloat(ua.split('Opera/')[1]) || undefined; var isOpera = parseFloat(ua.split('Opera/')[1]) || undefined;
var canTransition = (function () { var canTransition = (function () {
var ver = parseFloat(ua.split('Version/')[1]) || undefined; var ver = parseFloat(ua.split('Version/')[1]) || undefined;
// test to determine if this browser can handle CSS transitions. // test to determine if this browser can handle CSS transitions.
var cachedCanTransition = var cachedCanTransition =
(isWK || (isFF && isFF > 3.6) || (isOpera && ver >= 10.5)); (isWK || (isFF && isFF > 3.6) || (isOpera && ver >= 10.5));
return function () { return cachedCanTransition; }; return function () { return cachedCanTransition; };
})(); })();
// //
// Slide class // Slide class
// //
var Slide = function (node, idx) { var Slide = function (node, idx) {
this._node = node; this._node = node;
if (idx >= 0) { if (idx >= 0) {
this._count = idx + 1; this._count = idx + 1;
} }
if (this._node) { if (this._node) {
addClass(this._node, 'slide distant-slide'); addClass(this._node, 'slide distant-slide');
} }
this._makeCounter(); this._makeCounter();
this._makeBuildList(); this._makeBuildList();
}; };
Slide.prototype = { Slide.prototype = {
_node: null, _node: null,
_count: 0, _count: 0,
_buildList: [], _buildList: [],
_visited: false, _visited: false,
_currentState: '', _currentState: '',
_states: [ 'distant-slide', 'far-past', _states: [ 'distant-slide', 'far-past',
'past', 'current', 'future', 'past', 'current', 'future',
'far-future', 'distant-slide' ], 'far-future', 'distant-slide' ],
setState: function (state) { setState: function (state) {
if (typeof state !== 'string') { if (typeof state !== 'string') {
state = this._states[state]; state = this._states[state];
} }
if (state === 'current' && !this._visited) { if (state === 'current' && !this._visited) {
this._visited = true; this._visited = true;
this._makeBuildList(); this._makeBuildList();
} }
removeClass(this._node, this._states); removeClass(this._node, this._states);
addClass(this._node, state); addClass(this._node, state);
this._currentState = state; this._currentState = state;
// delay first auto run. Really wish this were in CSS. // delay first auto run. Really wish this were in CSS.
/* /*
this._runAutos(); this._runAutos();
*/ */
var _t = this; var _t = this;
setTimeout(function () { _t._runAutos(); }, 400); setTimeout(function () { _t._runAutos(); }, 400);
}, },
_makeCounter: function () { _makeCounter: function () {
if (!this._count || !this._node) { return; } if (!this._count || !this._node) { return; }
var c = doc.createElement('span'); var c = doc.createElement('span');
c.innerHTML = this._count; c.innerHTML = this._count;
c.className = 'counter'; c.className = 'counter';
this._node.appendChild(c); this._node.appendChild(c);
}, },
_makeBuildList: function () { _makeBuildList: function () {
this._buildList = []; this._buildList = [];
if (disableBuilds) { return; } if (disableBuilds) { return; }
if (this._node) { if (this._node) {
this._buildList = query('[data-build] > *', this._node); this._buildList = query('[data-build] > *', this._node);
} }
this._buildList.forEach(function (el) { this._buildList.forEach(function (el) {
addClass(el, 'to-build'); addClass(el, 'to-build');
}); });
}, },
_runAutos: function () { _runAutos: function () {
if (this._currentState !== 'current') { if (this._currentState !== 'current') {
return; return;
} }
// find the next auto, slice it out of the list, and run it // find the next auto, slice it out of the list, and run it
var idx = -1; var idx = -1;
this._buildList.some(function (n, i) { this._buildList.some(function (n, i) {
if (n.hasAttribute('data-auto')) { if (n.hasAttribute('data-auto')) {
idx = i; idx = i;
return true; return true;
} }
return false; return false;
}); });
if (idx >= 0) { if (idx >= 0) {
var elem = this._buildList.splice(idx, 1)[0]; var elem = this._buildList.splice(idx, 1)[0];
var transitionEnd = isWK ? 'webkitTransitionEnd' : (isFF ? 'mozTransitionEnd' : 'oTransitionEnd'); var transitionEnd = isWK ? 'webkitTransitionEnd' : (isFF ? 'mozTransitionEnd' : 'oTransitionEnd');
var _t = this; var _t = this;
if (canTransition()) { if (canTransition()) {
var l = function (evt) { var l = function (evt) {
elem.parentNode.removeEventListener(transitionEnd, l, false); elem.parentNode.removeEventListener(transitionEnd, l, false);
_t._runAutos(); _t._runAutos();
}; };
elem.parentNode.addEventListener(transitionEnd, l, false); elem.parentNode.addEventListener(transitionEnd, l, false);
removeClass(elem, 'to-build'); removeClass(elem, 'to-build');
} else { } else {
setTimeout(function () { setTimeout(function () {
removeClass(elem, 'to-build'); removeClass(elem, 'to-build');
_t._runAutos(); _t._runAutos();
}, 400); }, 400);
} }
} }
}, },
buildNext: function () { buildNext: function () {
if (!this._buildList.length) { if (!this._buildList.length) {
return false; return false;
} }
removeClass(this._buildList.shift(), 'to-build'); removeClass(this._buildList.shift(), 'to-build');
return true; return true;
} }
}; };
// //
// SlideShow class // SlideShow class
// //
var SlideShow = function (slides) { var SlideShow = function (slides) {
this._slides = (slides || []).map(function (el, idx) { this._slides = (slides || []).map(function (el, idx) {
return new Slide(el, idx); return new Slide(el, idx);
}); });
var h = window.location.hash; var h = window.location.hash;
try { try {
this.current = parseInt(h.split('#slide')[1], 10); this.current = parseInt(h.split('#slide')[1], 10);
} catch (e) { /* squeltch */ } } catch (e) { /* squeltch */ }
this.current = isNaN(this.current) ? 1 : this.current; this.current = isNaN(this.current) ? 1 : this.current;
var _t = this; var _t = this;
doc.addEventListener('keydown', doc.addEventListener('keydown',
function (e) { _t.handleKeys(e); }, false); function (e) { _t.handleKeys(e); }, false);
doc.addEventListener('mousewheel', doc.addEventListener('mousewheel',
function (e) { _t.handleWheel(e); }, false); function (e) { _t.handleWheel(e); }, false);
doc.addEventListener('DOMMouseScroll', doc.addEventListener('DOMMouseScroll',
function (e) { _t.handleWheel(e); }, false); function (e) { _t.handleWheel(e); }, false);
doc.addEventListener('touchstart', doc.addEventListener('touchstart',
function (e) { _t.handleTouchStart(e); }, false); function (e) { _t.handleTouchStart(e); }, false);
doc.addEventListener('touchend', doc.addEventListener('touchend',
function (e) { _t.handleTouchEnd(e); }, false); function (e) { _t.handleTouchEnd(e); }, false);
window.addEventListener('popstate', window.addEventListener('popstate',
function (e) { _t.go(e.state); }, false); function (e) { _t.go(e.state); }, false);
this._update(); this._update();
}; };
SlideShow.prototype = { SlideShow.prototype = {
_slides: [], _slides: [],
_update: function (dontPush) { _update: function (dontPush) {
document.querySelector('#presentation-counter').innerText = this.current; document.querySelector('#presentation-counter').innerText = this.current;
if (history.pushState) { if (history.pushState) {
if (!dontPush) { if (!dontPush) {
history.pushState(this.current, 'Slide ' + this.current, '#slide' + this.current); history.pushState(this.current, 'Slide ' + this.current, '#slide' + this.current);
} }
} else { } else {
window.location.hash = 'slide' + this.current; window.location.hash = 'slide' + this.current;
} }
for (var x = this.current - 1; x < this.current + 7; x++) { for (var x = this.current - 1; x < this.current + 7; x++) {
if (this._slides[x - 4]) { if (this._slides[x - 4]) {
this._slides[x - 4].setState(Math.max(0, x - this.current)); this._slides[x - 4].setState(Math.max(0, x - this.current));
} }
} }
}, },
current: 0, current: 0,
next: function () { next: function () {
if (!this._slides[this.current - 1].buildNext()) { if (!this._slides[this.current - 1].buildNext()) {
this.current = Math.min(this.current + 1, this._slides.length); this.current = Math.min(this.current + 1, this._slides.length);
this._update(); this._update();
} }
}, },
prev: function () { prev: function () {
this.current = Math.max(this.current - 1, 1); this.current = Math.max(this.current - 1, 1);
this._update(); this._update();
}, },
go: function (num) { go: function (num) {
if (history.pushState && this.current !== num) { if (history.pushState && this.current !== num) {
history.replaceState(this.current, 'Slide ' + this.current, '#slide' + this.current); history.replaceState(this.current, 'Slide ' + this.current, '#slide' + this.current);
} }
this.current = num; this.current = num;
this._update(true); this._update(true);
}, },
_notesOn: false, _notesOn: false,
showNotes: function () { showNotes: function () {
var notesOn = this._notesOn = !this._notesOn; var notesOn = this._notesOn = !this._notesOn;
query('.notes').forEach(function (el) { query('.notes').forEach(function (el) {
el.style.display = (notesOn) ? 'block' : 'none'; el.style.display = (notesOn) ? 'block' : 'none';
}); });
}, },
switch3D: function () { switch3D: function () {
toggleClass(document.body, 'three-d'); toggleClass(document.body, 'three-d');
}, },
handleWheel: function (e) { handleWheel: function (e) {
var delta = 0; var delta = 0;
if (e.wheelDelta) { if (e.wheelDelta) {
delta = e.wheelDelta / 120; delta = e.wheelDelta / 120;
if (isOpera) { if (isOpera) {
delta = -delta; delta = -delta;
} }
} else if (e.detail) { } else if (e.detail) {
delta = -e.detail / 3; delta = -e.detail / 3;
} }
if (delta > 0) { if (delta > 0) {
this.prev(); this.prev();
return; return;
} }
if (delta < 0) { if (delta < 0) {
this.next(); this.next();
} }
}, },
handleKeys: function (e) { handleKeys: function (e) {
if (/^(input|textarea)$/i.test(e.target.nodeName)) return; if (/^(input|textarea)$/i.test(e.target.nodeName)) return;
switch (e.keyCode) { switch (e.keyCode) {
case 37: // left arrow case 37: // left arrow
this.prev(); break; this.prev(); break;
case 39: // right arrow case 39: // right arrow
case 32: // space case 32: // space
this.next(); break; this.next(); break;
case 50: // 2 case 50: // 2
this.showNotes(); break; this.showNotes(); break;
case 51: // 3 case 51: // 3
this.switch3D(); break; this.switch3D(); break;
} }
}, },
_touchStartX: 0, _touchStartX: 0,
handleTouchStart: function (e) { handleTouchStart: function (e) {
this._touchStartX = e.touches[0].pageX; this._touchStartX = e.touches[0].pageX;
}, },
handleTouchEnd: function (e) { handleTouchEnd: function (e) {
var delta = this._touchStartX - e.changedTouches[0].pageX; var delta = this._touchStartX - e.changedTouches[0].pageX;
var SWIPE_SIZE = 150; var SWIPE_SIZE = 150;
if (delta > SWIPE_SIZE) { if (delta > SWIPE_SIZE) {
this.next(); this.next();
} else if (delta < -SWIPE_SIZE) { } else if (delta < -SWIPE_SIZE) {
this.prev(); this.prev();
} }
} }
}; };
// Initialize // Initialize
@@ -338,38 +338,38 @@ var counters = document.querySelectorAll('.counter');
var slides = document.querySelectorAll('.slide'); var slides = document.querySelectorAll('.slide');
function toggleCounter () { function toggleCounter () {
toArray(counters).forEach(function (el) { toArray(counters).forEach(function (el) {
el.style.display = (el.offsetHeight) ? 'none' : 'block'; el.style.display = (el.offsetHeight) ? 'none' : 'block';
}); });
} }
function toggleSize () { function toggleSize () {
toArray(slides).forEach(function (el) { toArray(slides).forEach(function (el) {
if (!/reduced/.test(el.className)) { if (!/reduced/.test(el.className)) {
addClass(el, 'reduced'); addClass(el, 'reduced');
} else { } else {
removeClass(el, 'reduced'); removeClass(el, 'reduced');
} }
}); });
} }
function toggleTransitions () { function toggleTransitions () {
toArray(slides).forEach(function (el) { toArray(slides).forEach(function (el) {
if (!/no-transitions/.test(el.className)) { if (!/no-transitions/.test(el.className)) {
addClass(el, 'no-transitions'); addClass(el, 'no-transitions');
} else { } else {
removeClass(el, 'no-transitions'); removeClass(el, 'no-transitions');
} }
}); });
} }
function toggleGradients () { function toggleGradients () {
toArray(slides).forEach(function (el) { toArray(slides).forEach(function (el) {
if (!/no-gradients/.test(el.className)) { if (!/no-gradients/.test(el.className)) {
addClass(el, 'no-gradients'); addClass(el, 'no-gradients');
} else { } else {
removeClass(el, 'no-gradients'); removeClass(el, 'no-gradients');
} }
}); });
} }
})(); })();