review eslint rule

This commit is contained in:
JFH
2021-05-30 16:49:53 +02:00
parent 99ee706c18
commit 8e54c15638
75 changed files with 253 additions and 252 deletions

View File

@@ -32,6 +32,7 @@ module.exports = {
/** @todo cognitive complexity should be much lower (25-50?) */ /** @todo cognitive complexity should be much lower (25-50?) */
"sonarjs/cognitive-complexity": [ "warn", 200 ], "sonarjs/cognitive-complexity": [ "warn", 200 ],
/** @todo no param reassign creates too many warnings but should be a warning */ /** @todo no param reassign creates too many warnings but should be a warning */
"comma-dangle": [ "error" ],
"no-param-reassign": "off", "no-param-reassign": "off",
"node/no-unsupported-features/es-syntax": 0, "node/no-unsupported-features/es-syntax": 0,
"no-unused-vars": [ "error", { "argsIgnorePattern": "^_" } ], "no-unused-vars": [ "error", { "argsIgnorePattern": "^_" } ],
@@ -45,7 +46,7 @@ module.exports = {
"warn", "warn",
{ "allow": [ "warn", "error", "info", "table" ] } { "allow": [ "warn", "error", "info", "table" ] }
], ],
"arrow-parens": [ "error", "always" ], "arrow-parens": [ "error", "always" ]
}, },
overrides: [ overrides: [
{ {
@@ -84,7 +85,7 @@ module.exports = {
{ {
files: [ 'src/editor/locale/*.js' ], files: [ 'src/editor/locale/*.js' ],
rules: { // lang files may have long length rules: { // lang files may have long length
"max-len": "off", "max-len": "off"
} }
} }
] ]

View File

@@ -18,7 +18,7 @@ export const NS = {
XLINK: 'http://www.w3.org/1999/xlink', XLINK: 'http://www.w3.org/1999/xlink',
OI: 'http://www.optimistik.fr/namespace/svg/OIdata', OI: 'http://www.optimistik.fr/namespace/svg/OIdata',
XML: 'http://www.w3.org/XML/1998/namespace', XML: 'http://www.w3.org/XML/1998/namespace',
XMLNS: 'http://www.w3.org/2000/xmlns/', // see http://www.w3.org/TR/REC-xml-names/#xmlReserved XMLNS: 'http://www.w3.org/2000/xmlns/' // see http://www.w3.org/TR/REC-xml-names/#xmlReserved
// SODIPODI: 'http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd', // SODIPODI: 'http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd',
// INKSCAPE: 'http://www.inkscape.org/namespaces/inkscape', // INKSCAPE: 'http://www.inkscape.org/namespaces/inkscape',
// RDF: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', // RDF: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',

View File

@@ -184,7 +184,7 @@ export default class ConfigObj {
'ext-shapes', 'ext-shapes',
'ext-polystar', 'ext-polystar',
'ext-storage', 'ext-storage',
'ext-opensave', 'ext-opensave'
// 'ext-helloworld', // 'ext-helloworld',
]; ];
this.curConfig = { this.curConfig = {

View File

@@ -276,7 +276,7 @@ export default {
} }
const attrs = { const attrs = {
width: newFO.getAttribute('width'), width: newFO.getAttribute('width'),
height: newFO.getAttribute('height'), height: newFO.getAttribute('height')
}; };
const keep = (attrs.width !== '0' || attrs.height !== '0'); const keep = (attrs.width !== '0' || attrs.height !== '0');
svgCanvas.addToSelection([ newFO ], true); svgCanvas.addToSelection([ newFO ], true);

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -12,5 +12,5 @@ export default {
imgLibs_0_name: 'Demo library (local)', imgLibs_0_name: 'Demo library (local)',
imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_0_description: 'Demonstration library for SVG-edit on this server',
imgLibs_1_name: 'IAN Symbol Libraries', imgLibs_1_name: 'IAN Symbol Libraries',
imgLibs_1_description: 'Free library of illustrations', imgLibs_1_description: 'Free library of illustrations'
}; };

View File

@@ -79,7 +79,7 @@ export const putLocale = async function (givenParam, goodLangs) {
debug: false, debug: false,
resources: { resources: {
[langParam]: { [langParam]: {
translation: module.default, translation: module.default
} }
} }
}); });

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Změnit ID elementu', id: 'Změnit ID elementu',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Hlavní menu', main_menu: 'Hlavní menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Vrstva', layer: 'Vrstva',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Nevhodná hodnota', invalidAttrValGiven: 'Nevhodná hodnota',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -265,7 +265,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Element identifizieren', id: 'Element identifizieren',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Hauptmenü', main_menu: 'Hauptmenü',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Ebene', layer: 'Ebene',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Fehlerhafter Wert', invalidAttrValGiven: 'Fehlerhafter Wert',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Menú principal', main_menu: 'Menú principal',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Capa', layer: 'Capa',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Valor no válido', invalidAttrValGiven: 'Valor no válido',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: '‫لایه‬', layer: '‫لایه‬',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: '‫مقدار داده شده نامعتبر است‬', invalidAttrValGiven: '‫مقدار داده شده نامعتبر است‬',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: "Identifier l'élément", id: "Identifier l'élément",
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Menu principal', main_menu: 'Menu principal',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Calque', layer: 'Calque',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Valeur fournie invalide', invalidAttrValGiven: 'Valeur fournie invalide',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Laach', layer: 'Laach',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Ferkearde waarde jûn', invalidAttrValGiven: 'Ferkearde waarde jûn',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'परत', layer: 'परत',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'अमान्य मूल्य', invalidAttrValGiven: 'अमान्य मूल्य',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: "Identifica l'elemento", id: "Identifica l'elemento",
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Menù principale', main_menu: 'Menù principale',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Livello', layer: 'Livello',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Valore assegnato non valido', invalidAttrValGiven: 'Valore assegnato non valido',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'レイヤ', layer: 'レイヤ',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: '無効な値が指定されています。', invalidAttrValGiven: '無効な値が指定されています。',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identificeer het element', id: 'Identificeer het element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Hoofdmenu', main_menu: 'Hoofdmenu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Laag', layer: 'Laag',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Verkeerde waarde gegeven', invalidAttrValGiven: 'Verkeerde waarde gegeven',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -28,7 +28,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identyfikator elementu', id: 'Identyfikator elementu',
@@ -91,7 +91,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Menu główne', main_menu: 'Menu główne',
@@ -170,7 +170,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Warstwa', layer: 'Warstwa',
@@ -263,7 +263,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Podano nieprawidłową wartość', invalidAttrValGiven: 'Podano nieprawidłową wartość',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identifica o elemento', id: 'Identifica o elemento',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Menu Principal', main_menu: 'Menu Principal',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Camada', layer: 'Camada',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Valor inválido', invalidAttrValGiven: 'Valor inválido',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identificare element', id: 'Identificare element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Menu Principal', main_menu: 'Menu Principal',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Strat', layer: 'Strat',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Valoarea data nu este validă', invalidAttrValGiven: 'Valoarea data nu este validă',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Идентификатор элемента', id: 'Идентификатор элемента',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Главное меню', main_menu: 'Главное меню',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Слой', layer: 'Слой',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Некорректное значение аргумента', invalidAttrValGiven: 'Некорректное значение аргумента',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Zmeniť ID elementu', id: 'Zmeniť ID elementu',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Hlavné menu', main_menu: 'Hlavné menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Vrstva', layer: 'Vrstva',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Neplatná hodnota', invalidAttrValGiven: 'Neplatná hodnota',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'ID elementa', id: 'ID elementa',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Glavni meni', main_menu: 'Glavni meni',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Sloj', layer: 'Sloj',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Napačna vrednost!', invalidAttrValGiven: 'Napačna vrednost!',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: '元素ID', id: '元素ID',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: '主菜单', main_menu: '主菜单',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: '图层', layer: '图层',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: '无效的参数', invalidAttrValGiven: '无效的参数',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',

View File

@@ -27,7 +27,7 @@ export default {
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:', export_type_label: 'Select an image type for export:'
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@@ -90,7 +90,7 @@ export default {
no_prefs_or_content: 'Do not store my preferences or SVG content locally', no_prefs_or_content: 'Do not store my preferences or SVG content locally',
jgraduate_pad: 'Pad', jgraduate_pad: 'Pad',
jgraduate_reflect: 'Reflect', jgraduate_reflect: 'Reflect',
jgraduate_repeat: 'Repeat', jgraduate_repeat: 'Repeat'
}, },
tools: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@@ -169,7 +169,7 @@ export default {
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool', square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?', remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.', remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.'
}, },
layers: { layers: {
layer: '圖層', layer: '圖層',
@@ -262,7 +262,7 @@ export default {
jgraduate_set_angle: 'Click to set Angle', jgraduate_set_angle: 'Click to set Angle',
jgraduate_deg: 'deg:', jgraduate_deg: 'deg:',
jgraduate_opac: 'Opac:', jgraduate_opac: 'Opac:',
jgraduate_set_opac: 'Click to set Opac', jgraduate_set_opac: 'Click to set Opac'
}, },
notification: { notification: {
invalidAttrValGiven: '數值給定錯誤', invalidAttrValGiven: '數值給定錯誤',

View File

@@ -747,7 +747,7 @@ export const setImageURLMethod = function (val) {
const attrs = { const attrs = {
width: elem.getAttribute('width'), width: elem.getAttribute('width'),
height: elem.getAttribute('height'), height: elem.getAttribute('height')
}; };
const setsize = (!attrs.width || !attrs.height); const setsize = (!attrs.width || !attrs.height);
@@ -768,7 +768,7 @@ export const setImageURLMethod = function (val) {
img.onload = function () { img.onload = function () {
const changes = { const changes = {
width: elem.getAttribute('width'), width: elem.getAttribute('width'),
height: elem.getAttribute('height'), height: elem.getAttribute('height')
}; };
elem.setAttribute('width', this.width); elem.setAttribute('width', this.width);
elem.setAttribute('height', this.height); elem.setAttribute('height', this.height);

View File

@@ -707,7 +707,7 @@ export const recalculateDimensions = function (selected) {
x1: selected.getAttribute('x1'), x1: selected.getAttribute('x1'),
y1: selected.getAttribute('y1'), y1: selected.getAttribute('y1'),
x2: selected.getAttribute('x2'), x2: selected.getAttribute('x2'),
y2: selected.getAttribute('y2'), y2: selected.getAttribute('y2')
}; };
// Fallthrough // Fallthrough
case 'polyline': case 'polyline':

View File

@@ -535,7 +535,7 @@ export const pushGroupProperty = function (g, undoable) {
const gattrs = { const gattrs = {
filter: g.getAttribute('filter'), filter: g.getAttribute('filter'),
opacity: g.getAttribute('opacity'), opacity: g.getAttribute('opacity')
}; };
let gfilter; let gblur; let changes; let gfilter; let gblur; let changes;
const drawing = elementContext_.getDrawing(); const drawing = elementContext_.getDrawing();
@@ -719,7 +719,7 @@ export const convertToGroup = function (elem) {
const svg = elem.firstChild; const svg = elem.firstChild;
const pt = { const pt = {
x: svg.getAttribute('x'), x: svg.getAttribute('x'),
y: svg.getAttribute('y'), y: svg.getAttribute('y')
}; };
// $(elem.firstChild.firstChild).unwrap(); // $(elem.firstChild.firstChild).unwrap();