diff --git a/.eslintrc.js b/.eslintrc.js index cd21aa9f..1819e570 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -32,6 +32,7 @@ module.exports = { /** @todo cognitive complexity should be much lower (25-50?) */ "sonarjs/cognitive-complexity": [ "warn", 200 ], /** @todo no param reassign creates too many warnings but should be a warning */ + "comma-dangle": [ "error" ], "no-param-reassign": "off", "node/no-unsupported-features/es-syntax": 0, "no-unused-vars": [ "error", { "argsIgnorePattern": "^_" } ], @@ -45,7 +46,7 @@ module.exports = { "warn", { "allow": [ "warn", "error", "info", "table" ] } ], - "arrow-parens": [ "error", "always" ], + "arrow-parens": [ "error", "always" ] }, overrides: [ { @@ -84,7 +85,7 @@ module.exports = { { files: [ 'src/editor/locale/*.js' ], rules: { // lang files may have long length - "max-len": "off", + "max-len": "off" } } ] diff --git a/src/common/namespaces.js b/src/common/namespaces.js index d3817bdb..3771691a 100644 --- a/src/common/namespaces.js +++ b/src/common/namespaces.js @@ -18,7 +18,7 @@ export const NS = { XLINK: 'http://www.w3.org/1999/xlink', OI: 'http://www.optimistik.fr/namespace/svg/OIdata', 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', // INKSCAPE: 'http://www.inkscape.org/namespaces/inkscape', // RDF: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', diff --git a/src/editor/ConfigObj.js b/src/editor/ConfigObj.js index f49a7ac8..c36b84ff 100644 --- a/src/editor/ConfigObj.js +++ b/src/editor/ConfigObj.js @@ -184,7 +184,7 @@ export default class ConfigObj { 'ext-shapes', 'ext-polystar', 'ext-storage', - 'ext-opensave', + 'ext-opensave' // 'ext-helloworld', ]; this.curConfig = { diff --git a/src/editor/extensions/ext-foreignobject/ext-foreignobject.js b/src/editor/extensions/ext-foreignobject/ext-foreignobject.js index 2a416463..9dd7a5b8 100644 --- a/src/editor/extensions/ext-foreignobject/ext-foreignobject.js +++ b/src/editor/extensions/ext-foreignobject/ext-foreignobject.js @@ -276,7 +276,7 @@ export default { } const attrs = { width: newFO.getAttribute('width'), - height: newFO.getAttribute('height'), + height: newFO.getAttribute('height') }; const keep = (attrs.width !== '0' || attrs.height !== '0'); svgCanvas.addToSelection([ newFO ], true); diff --git a/src/editor/extensions/ext-imagelib/locale/de.js b/src/editor/extensions/ext-imagelib/locale/de.js index 7e06169e..611441e4 100644 --- a/src/editor/extensions/ext-imagelib/locale/de.js +++ b/src/editor/extensions/ext-imagelib/locale/de.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/extensions/ext-imagelib/locale/en.js b/src/editor/extensions/ext-imagelib/locale/en.js index acbae4ef..2ed15479 100644 --- a/src/editor/extensions/ext-imagelib/locale/en.js +++ b/src/editor/extensions/ext-imagelib/locale/en.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/extensions/ext-imagelib/locale/fr.js b/src/editor/extensions/ext-imagelib/locale/fr.js index d3197f61..a2801f11 100644 --- a/src/editor/extensions/ext-imagelib/locale/fr.js +++ b/src/editor/extensions/ext-imagelib/locale/fr.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/extensions/ext-imagelib/locale/pl.js b/src/editor/extensions/ext-imagelib/locale/pl.js index a040f5f7..25e850ac 100644 --- a/src/editor/extensions/ext-imagelib/locale/pl.js +++ b/src/editor/extensions/ext-imagelib/locale/pl.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/extensions/ext-imagelib/locale/pt-BR.js b/src/editor/extensions/ext-imagelib/locale/pt-BR.js index d3ea77e0..70e326a8 100644 --- a/src/editor/extensions/ext-imagelib/locale/pt-BR.js +++ b/src/editor/extensions/ext-imagelib/locale/pt-BR.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/extensions/ext-imagelib/locale/ro.js b/src/editor/extensions/ext-imagelib/locale/ro.js index ecdb68bc..4e9412ff 100644 --- a/src/editor/extensions/ext-imagelib/locale/ro.js +++ b/src/editor/extensions/ext-imagelib/locale/ro.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/extensions/ext-imagelib/locale/sk.js b/src/editor/extensions/ext-imagelib/locale/sk.js index 30db7c6a..18c4dfd2 100644 --- a/src/editor/extensions/ext-imagelib/locale/sk.js +++ b/src/editor/extensions/ext-imagelib/locale/sk.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/extensions/ext-imagelib/locale/sl.js b/src/editor/extensions/ext-imagelib/locale/sl.js index 6422b3f4..c19c481e 100644 --- a/src/editor/extensions/ext-imagelib/locale/sl.js +++ b/src/editor/extensions/ext-imagelib/locale/sl.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/extensions/ext-imagelib/locale/zh-CN.js b/src/editor/extensions/ext-imagelib/locale/zh-CN.js index add2dfdf..706f14ad 100644 --- a/src/editor/extensions/ext-imagelib/locale/zh-CN.js +++ b/src/editor/extensions/ext-imagelib/locale/zh-CN.js @@ -12,5 +12,5 @@ export default { imgLibs_0_name: 'Demo library (local)', imgLibs_0_description: 'Demonstration library for SVG-edit on this server', imgLibs_1_name: 'IAN Symbol Libraries', - imgLibs_1_description: 'Free library of illustrations', + imgLibs_1_description: 'Free library of illustrations' }; diff --git a/src/editor/locale.js b/src/editor/locale.js index 499cb35e..7be840a4 100644 --- a/src/editor/locale.js +++ b/src/editor/locale.js @@ -79,7 +79,7 @@ export const putLocale = async function (givenParam, goodLangs) { debug: false, resources: { [langParam]: { - translation: module.default, + translation: module.default } } }); diff --git a/src/editor/locale/lang.af.js b/src/editor/locale/lang.af.js index 4b9a59d9..193b6dd6 100644 --- a/src/editor/locale/lang.af.js +++ b/src/editor/locale/lang.af.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.ar.js b/src/editor/locale/lang.ar.js index a9d194c3..8a119231 100644 --- a/src/editor/locale/lang.ar.js +++ b/src/editor/locale/lang.ar.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.az.js b/src/editor/locale/lang.az.js index 3f763356..81f93c03 100644 --- a/src/editor/locale/lang.az.js +++ b/src/editor/locale/lang.az.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.be.js b/src/editor/locale/lang.be.js index 44162c2b..53108ac9 100644 --- a/src/editor/locale/lang.be.js +++ b/src/editor/locale/lang.be.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.bg.js b/src/editor/locale/lang.bg.js index 8af24096..a75cccc8 100644 --- a/src/editor/locale/lang.bg.js +++ b/src/editor/locale/lang.bg.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.ca.js b/src/editor/locale/lang.ca.js index 2bb823fa..7d1406b1 100644 --- a/src/editor/locale/lang.ca.js +++ b/src/editor/locale/lang.ca.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.cs.js b/src/editor/locale/lang.cs.js index 42da7ccb..37546607 100644 --- a/src/editor/locale/lang.cs.js +++ b/src/editor/locale/lang.cs.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Změnit ID elementu', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Hlavní menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Vrstva', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Nevhodná hodnota', diff --git a/src/editor/locale/lang.cy.js b/src/editor/locale/lang.cy.js index 7abefd06..b5978103 100644 --- a/src/editor/locale/lang.cy.js +++ b/src/editor/locale/lang.cy.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.da.js b/src/editor/locale/lang.da.js index cf7897b5..1326e6b1 100644 --- a/src/editor/locale/lang.da.js +++ b/src/editor/locale/lang.da.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -265,7 +265,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.de.js b/src/editor/locale/lang.de.js index 786fdb9b..bea62275 100644 --- a/src/editor/locale/lang.de.js +++ b/src/editor/locale/lang.de.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Element identifizieren', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Hauptmenü', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Ebene', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Fehlerhafter Wert', diff --git a/src/editor/locale/lang.el.js b/src/editor/locale/lang.el.js index 30fc794e..f1c0ac36 100644 --- a/src/editor/locale/lang.el.js +++ b/src/editor/locale/lang.el.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.en.js b/src/editor/locale/lang.en.js index 41f835e4..c55b8f06 100644 --- a/src/editor/locale/lang.en.js +++ b/src/editor/locale/lang.en.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.es.js b/src/editor/locale/lang.es.js index c3ad6565..b7f9dd58 100644 --- a/src/editor/locale/lang.es.js +++ b/src/editor/locale/lang.es.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Menú principal', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Capa', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Valor no válido', diff --git a/src/editor/locale/lang.et.js b/src/editor/locale/lang.et.js index 6dcaeffa..33c31e29 100644 --- a/src/editor/locale/lang.et.js +++ b/src/editor/locale/lang.et.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.fa.js b/src/editor/locale/lang.fa.js index ad50ee2d..84bee637 100644 --- a/src/editor/locale/lang.fa.js +++ b/src/editor/locale/lang.fa.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: '‫لایه‬', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: '‫مقدار داده شده نامعتبر است‬', diff --git a/src/editor/locale/lang.fi.js b/src/editor/locale/lang.fi.js index 60b588c9..c869c8c8 100644 --- a/src/editor/locale/lang.fi.js +++ b/src/editor/locale/lang.fi.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.fr.js b/src/editor/locale/lang.fr.js index 2702edb8..707ddbae 100644 --- a/src/editor/locale/lang.fr.js +++ b/src/editor/locale/lang.fr.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: "Identifier l'élément", @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Menu principal', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Calque', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Valeur fournie invalide', diff --git a/src/editor/locale/lang.fy.js b/src/editor/locale/lang.fy.js index e530861e..0961f698 100644 --- a/src/editor/locale/lang.fy.js +++ b/src/editor/locale/lang.fy.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Laach', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Ferkearde waarde jûn', diff --git a/src/editor/locale/lang.ga.js b/src/editor/locale/lang.ga.js index 8d6c9886..af50faf3 100644 --- a/src/editor/locale/lang.ga.js +++ b/src/editor/locale/lang.ga.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.gl.js b/src/editor/locale/lang.gl.js index dbcc47d6..8c9542ab 100644 --- a/src/editor/locale/lang.gl.js +++ b/src/editor/locale/lang.gl.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.he.js b/src/editor/locale/lang.he.js index 7ab5539f..bd232550 100755 --- a/src/editor/locale/lang.he.js +++ b/src/editor/locale/lang.he.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.hi.js b/src/editor/locale/lang.hi.js index ebc94e61..970e8165 100644 --- a/src/editor/locale/lang.hi.js +++ b/src/editor/locale/lang.hi.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'परत', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'अमान्य मूल्य', diff --git a/src/editor/locale/lang.hr.js b/src/editor/locale/lang.hr.js index d0798dda..52127d77 100644 --- a/src/editor/locale/lang.hr.js +++ b/src/editor/locale/lang.hr.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.hu.js b/src/editor/locale/lang.hu.js index 43bd5f52..28af52a4 100644 --- a/src/editor/locale/lang.hu.js +++ b/src/editor/locale/lang.hu.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.hy.js b/src/editor/locale/lang.hy.js index c916dd39..25ad35ff 100644 --- a/src/editor/locale/lang.hy.js +++ b/src/editor/locale/lang.hy.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.id.js b/src/editor/locale/lang.id.js index a0a2dca5..14824300 100644 --- a/src/editor/locale/lang.id.js +++ b/src/editor/locale/lang.id.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.is.js b/src/editor/locale/lang.is.js index 0f2634c2..f95ed9b6 100644 --- a/src/editor/locale/lang.is.js +++ b/src/editor/locale/lang.is.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.it.js b/src/editor/locale/lang.it.js index f2127235..935ad40f 100644 --- a/src/editor/locale/lang.it.js +++ b/src/editor/locale/lang.it.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: "Identifica l'elemento", @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Menù principale', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Livello', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Valore assegnato non valido', diff --git a/src/editor/locale/lang.ja.js b/src/editor/locale/lang.ja.js index e8cf87b5..0b2fa93e 100644 --- a/src/editor/locale/lang.ja.js +++ b/src/editor/locale/lang.ja.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'レイヤ', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: '無効な値が指定されています。', diff --git a/src/editor/locale/lang.ko.js b/src/editor/locale/lang.ko.js index 0362216a..7ec90eda 100644 --- a/src/editor/locale/lang.ko.js +++ b/src/editor/locale/lang.ko.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.lt.js b/src/editor/locale/lang.lt.js index f83ccc3e..9d00e1c4 100644 --- a/src/editor/locale/lang.lt.js +++ b/src/editor/locale/lang.lt.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.lv.js b/src/editor/locale/lang.lv.js index d119baff..98326ad5 100644 --- a/src/editor/locale/lang.lv.js +++ b/src/editor/locale/lang.lv.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.mk.js b/src/editor/locale/lang.mk.js index 4b11aa11..7b01fda7 100644 --- a/src/editor/locale/lang.mk.js +++ b/src/editor/locale/lang.mk.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.ms.js b/src/editor/locale/lang.ms.js index 0fdefcae..edcc1cb1 100644 --- a/src/editor/locale/lang.ms.js +++ b/src/editor/locale/lang.ms.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.mt.js b/src/editor/locale/lang.mt.js index b5eecfed..ca42a62d 100644 --- a/src/editor/locale/lang.mt.js +++ b/src/editor/locale/lang.mt.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.nl.js b/src/editor/locale/lang.nl.js index f7e50d5a..55a0dbbc 100644 --- a/src/editor/locale/lang.nl.js +++ b/src/editor/locale/lang.nl.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identificeer het element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Hoofdmenu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Laag', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Verkeerde waarde gegeven', diff --git a/src/editor/locale/lang.no.js b/src/editor/locale/lang.no.js index b6dc30d5..ae97a826 100644 --- a/src/editor/locale/lang.no.js +++ b/src/editor/locale/lang.no.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.pl.js b/src/editor/locale/lang.pl.js index 06036461..f46af988 100644 --- a/src/editor/locale/lang.pl.js +++ b/src/editor/locale/lang.pl.js @@ -28,7 +28,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identyfikator elementu', @@ -91,7 +91,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Menu główne', @@ -170,7 +170,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Warstwa', @@ -263,7 +263,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Podano nieprawidłową wartość', diff --git a/src/editor/locale/lang.pt-BR.js b/src/editor/locale/lang.pt-BR.js index 4a2c07a2..f62a54d9 100644 --- a/src/editor/locale/lang.pt-BR.js +++ b/src/editor/locale/lang.pt-BR.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identifica o elemento', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Menu Principal', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Camada', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Valor inválido', diff --git a/src/editor/locale/lang.pt-PT.js b/src/editor/locale/lang.pt-PT.js index 6c99bc1b..414e69a0 100644 --- a/src/editor/locale/lang.pt-PT.js +++ b/src/editor/locale/lang.pt-PT.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.ro.js b/src/editor/locale/lang.ro.js index 15cabbaa..d0d85fe3 100644 --- a/src/editor/locale/lang.ro.js +++ b/src/editor/locale/lang.ro.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identificare element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Menu Principal', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Strat', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Valoarea data nu este validă', diff --git a/src/editor/locale/lang.ru.js b/src/editor/locale/lang.ru.js index 9e3232cd..757a221f 100644 --- a/src/editor/locale/lang.ru.js +++ b/src/editor/locale/lang.ru.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Идентификатор элемента', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Главное меню', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Слой', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Некорректное значение аргумента', diff --git a/src/editor/locale/lang.sk.js b/src/editor/locale/lang.sk.js index 92c7e9be..dc684861 100644 --- a/src/editor/locale/lang.sk.js +++ b/src/editor/locale/lang.sk.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Zmeniť ID elementu', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Hlavné menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Vrstva', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Neplatná hodnota', diff --git a/src/editor/locale/lang.sl.js b/src/editor/locale/lang.sl.js index 4caa27e2..99966d06 100644 --- a/src/editor/locale/lang.sl.js +++ b/src/editor/locale/lang.sl.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'ID elementa', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Glavni meni', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Sloj', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Napačna vrednost!', diff --git a/src/editor/locale/lang.sq.js b/src/editor/locale/lang.sq.js index fccdf0c8..6a5772de 100644 --- a/src/editor/locale/lang.sq.js +++ b/src/editor/locale/lang.sq.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.sr.js b/src/editor/locale/lang.sr.js index 2669c818..ea8fd85b 100644 --- a/src/editor/locale/lang.sr.js +++ b/src/editor/locale/lang.sr.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.sv.js b/src/editor/locale/lang.sv.js index aefecec9..79b81adc 100644 --- a/src/editor/locale/lang.sv.js +++ b/src/editor/locale/lang.sv.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.sw.js b/src/editor/locale/lang.sw.js index 7e521899..f52f4556 100644 --- a/src/editor/locale/lang.sw.js +++ b/src/editor/locale/lang.sw.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.test.js b/src/editor/locale/lang.test.js index e90d66a7..d0aaa8e2 100644 --- a/src/editor/locale/lang.test.js +++ b/src/editor/locale/lang.test.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.th.js b/src/editor/locale/lang.th.js index 17577ede..e3016fd4 100644 --- a/src/editor/locale/lang.th.js +++ b/src/editor/locale/lang.th.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.tl.js b/src/editor/locale/lang.tl.js index 04fc8f19..20a6d51b 100644 --- a/src/editor/locale/lang.tl.js +++ b/src/editor/locale/lang.tl.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.tr.js b/src/editor/locale/lang.tr.js index eca47db1..d08e2c76 100644 --- a/src/editor/locale/lang.tr.js +++ b/src/editor/locale/lang.tr.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.uk.js b/src/editor/locale/lang.uk.js index 65c35268..b47fd586 100644 --- a/src/editor/locale/lang.uk.js +++ b/src/editor/locale/lang.uk.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.vi.js b/src/editor/locale/lang.vi.js index b78ca521..ec09f523 100644 --- a/src/editor/locale/lang.vi.js +++ b/src/editor/locale/lang.vi.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.yi.js b/src/editor/locale/lang.yi.js index 2d7b2e29..136b7f2d 100644 --- a/src/editor/locale/lang.yi.js +++ b/src/editor/locale/lang.yi.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.zh-CN.js b/src/editor/locale/lang.zh-CN.js index 0319ca5e..62f71bc0 100644 --- a/src/editor/locale/lang.zh-CN.js +++ b/src/editor/locale/lang.zh-CN.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: '元素ID', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: '主菜单', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: '图层', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: '无效的参数', diff --git a/src/editor/locale/lang.zh-HK.js b/src/editor/locale/lang.zh-HK.js index af96f324..5c4ccaa0 100644 --- a/src/editor/locale/lang.zh-HK.js +++ b/src/editor/locale/lang.zh-HK.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: 'Layer', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: 'Invalid value given', diff --git a/src/editor/locale/lang.zh-TW.js b/src/editor/locale/lang.zh-TW.js index 706fecff..4bb7ea7b 100644 --- a/src/editor/locale/lang.zh-TW.js +++ b/src/editor/locale/lang.zh-TW.js @@ -27,7 +27,7 @@ export default { pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', 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: { id: 'Identify the element', @@ -90,7 +90,7 @@ export default { no_prefs_or_content: 'Do not store my preferences or SVG content locally', jgraduate_pad: 'Pad', jgraduate_reflect: 'Reflect', - jgraduate_repeat: 'Repeat', + jgraduate_repeat: 'Repeat' }, tools: { main_menu: 'Main Menu', @@ -169,7 +169,7 @@ export default { ellipse_circle_tool: 'Ellipse/Circle Tool', square_rect_tool: 'Square/Rect Tool', 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: { layer: '圖層', @@ -262,7 +262,7 @@ export default { jgraduate_set_angle: 'Click to set Angle', jgraduate_deg: 'deg:', jgraduate_opac: 'Opac:', - jgraduate_set_opac: 'Click to set Opac', + jgraduate_set_opac: 'Click to set Opac' }, notification: { invalidAttrValGiven: '數值給定錯誤', diff --git a/src/svgcanvas/elem-get-set.js b/src/svgcanvas/elem-get-set.js index 27c2b857..7c2284e7 100644 --- a/src/svgcanvas/elem-get-set.js +++ b/src/svgcanvas/elem-get-set.js @@ -747,7 +747,7 @@ export const setImageURLMethod = function (val) { const attrs = { width: elem.getAttribute('width'), - height: elem.getAttribute('height'), + height: elem.getAttribute('height') }; const setsize = (!attrs.width || !attrs.height); @@ -768,7 +768,7 @@ export const setImageURLMethod = function (val) { img.onload = function () { const changes = { width: elem.getAttribute('width'), - height: elem.getAttribute('height'), + height: elem.getAttribute('height') }; elem.setAttribute('width', this.width); elem.setAttribute('height', this.height); diff --git a/src/svgcanvas/recalculate.js b/src/svgcanvas/recalculate.js index ee2d509a..186fb447 100644 --- a/src/svgcanvas/recalculate.js +++ b/src/svgcanvas/recalculate.js @@ -707,7 +707,7 @@ export const recalculateDimensions = function (selected) { x1: selected.getAttribute('x1'), y1: selected.getAttribute('y1'), x2: selected.getAttribute('x2'), - y2: selected.getAttribute('y2'), + y2: selected.getAttribute('y2') }; // Fallthrough case 'polyline': diff --git a/src/svgcanvas/selected-elem.js b/src/svgcanvas/selected-elem.js index d39ffe24..0fe11266 100644 --- a/src/svgcanvas/selected-elem.js +++ b/src/svgcanvas/selected-elem.js @@ -535,7 +535,7 @@ export const pushGroupProperty = function (g, undoable) { const gattrs = { filter: g.getAttribute('filter'), - opacity: g.getAttribute('opacity'), + opacity: g.getAttribute('opacity') }; let gfilter; let gblur; let changes; const drawing = elementContext_.getDrawing(); @@ -719,7 +719,7 @@ export const convertToGroup = function (elem) { const svg = elem.firstChild; const pt = { x: svg.getAttribute('x'), - y: svg.getAttribute('y'), + y: svg.getAttribute('y') }; // $(elem.firstChild.firstChild).unwrap();