Merge pull request #512 from OptimistikSAS/issues/99

#99 i18n translation changes
master
JFH 2021-05-19 16:28:29 +02:00 committed by GitHub
commit ab6a2a3ca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
66 changed files with 854 additions and 331 deletions

View File

@ -111,16 +111,6 @@ class Editor extends EditorStartup {
this.layersPanel = new LayersPanel(this);
this.mainMenu = new MainMenu(this);
window.svgEditor = this;
this.loadComponentAndDialog();
}
/**
* @returns {void}
*/
async loadComponentAndDialog() {
// eslint-disable-next-line no-unsanitized/method
// await import(`./components/index.js`);
// eslint-disable-next-line no-unsanitized/method
await import(`./dialogs/index.js`);
}
/**
*

View File

@ -68,6 +68,10 @@ class EditorStartup {
const self = this;
const { i18next } = await putLocale(this.configObj.pref('lang'), this.goodLangs);
this.i18next = i18next;
// eslint-disable-next-line no-unsanitized/method
await import(`./components/index.js`);
// eslint-disable-next-line no-unsanitized/method
await import(`./dialogs/index.js`);
// allow to prepare the dom without display
this.$svgEditor.style.visibility = 'hidden';
try {

View File

@ -86,7 +86,7 @@ class MainMenu {
// Set image save option
this.editor.configObj.pref("img_save", save);
this.editor.updateCanvas();
this.editor.hideDocProperties();
this.hideDocProperties();
return true;
}
/**

View File

@ -1,4 +1,5 @@
/* eslint-disable max-len */
/* globals svgEditor */
const palette = [
// Todo: Make into configuration item?
'none', '#000000', '#3f3f3f', '#7f7f7f', '#bfbfbf', '#ffffff',
@ -14,6 +15,7 @@ const palette = [
];
const template = document.createElement('template');
// eslint-disable-next-line no-unsanitized/property
template.innerHTML = `
<style>
.square {
@ -76,7 +78,7 @@ template.innerHTML = `
}
}
</style>
<div id="palette_holder" title="Click to change fill color, shift-click to change stroke color">
<div id="palette_holder" title="${svgEditor.i18next.t('ui.palette_info')}">
<div id="js-se-palette">
</div>
</div>

View File

@ -1,6 +1,8 @@
/* globals svgEditor */
import './se-elix/define/NumberSpinBox.js';
const template = document.createElement('template');
// eslint-disable-next-line no-unsanitized/property
template.innerHTML = `
<style>
@ -57,7 +59,7 @@ template.innerHTML = `
<div id="dialog_container">
<div id="dialog_content">
<p class="se-select">
Select an image type for export:
${svgEditor.i18next.t('ui.export_type_label')}
</p>
<p class="se-select">
<select id="se-storage-pref">
@ -68,14 +70,14 @@ template.innerHTML = `
<option value="PDF">PDF</option>
</select>
</p>
<p id="se-quality">Quality:<elix-number-spin-box min="-1" max="101" step="5" value="100"></elix-number-spin-box></p>
<p id="se-quality">${svgEditor.i18next.t('ui.quality')}<elix-number-spin-box min="-1" max="101" step="5" value="100"></elix-number-spin-box></p>
</div>
<div id="dialog_buttons">
<button id="export_ok">
Ok
${svgEditor.i18next.t('common.ok')}
</button>
<button id="export_cancel">
Cancel
${svgEditor.i18next.t('common.cancel')}
</button>
</div>
</div>

View File

@ -1,6 +1,8 @@
/* globals svgEditor */
import { isValidUnit } from '../../common/units.js';
const template = document.createElement('template');
// eslint-disable-next-line no-unsanitized/property
template.innerHTML = `
<style>
:not(:defined) {
@ -69,46 +71,46 @@ template.innerHTML = `
<elix-dialog id="svg_docprops" aria-label="Sample dialog" closed>
<div id="svg_docprops_container">
<div id="tool_docprops_back" class="toolbar_button">
<button id="tool_docprops_save">OK</button>
<button id="tool_docprops_cancel">Cancel</button>
<button id="tool_docprops_save">${svgEditor.i18next.t('common.ok')}</button>
<button id="tool_docprops_cancel">${svgEditor.i18next.t('common.cancel')}</button>
</div>
<fieldset id="svg_docprops_docprops">
<legend id="svginfo_image_props">Image Properties</legend>
<legend id="svginfo_image_props">${svgEditor.i18next.t('config.image_props')}</legend>
<label>
<span id="svginfo_title">Title:</span>
<span id="svginfo_title">${svgEditor.i18next.t('config.doc_title')}</span>
<input type="text" id="canvas_title" />
</label>
<fieldset id="change_resolution">
<legend id="svginfo_dim">Canvas Dimensions</legend>
<legend id="svginfo_dim">${svgEditor.i18next.t('config.doc_dims')}</legend>
<label>
<span id="svginfo_width">width:</span>
<span id="svginfo_width">${svgEditor.i18next.t('common.width')}</span>
<input type="text" id="canvas_width" size="6" />
</label>
<label>
<span id="svginfo_height">height:</span>
<span id="svginfo_height">${svgEditor.i18next.t('common.height')}</span>
<input type="text" id="canvas_height" size="6" />
</label>
<label>
<select id="resolution">
<option id="selectedPredefined" selected="selected">Select predefined:</option>
<option id="selectedPredefined" selected="selected">${svgEditor.i18next.t('config.select_predefined')}</option>
<option>640x480</option>
<option>800x600</option>
<option>1024x768</option>
<option>1280x960</option>
<option>1600x1200</option>
<option id="fitToContent" value="content">Fit to Content</option>
<option id="fitToContent" value="content">${svgEditor.i18next.t('tools.fitToContent')}</option>
</select>
</label>
</fieldset>
<fieldset id="image_save_opts">
<legend id="includedImages">Included Images</legend>
<legend id="includedImages">${svgEditor.i18next.t('config.included_images')}</legend>
<label>
<input type="radio" id="image_embed" name="image_opt" value="embed" checked="checked" />
<span id="image_opt_embed">Embed data (local files)</span>
<span id="image_opt_embed">${svgEditor.i18next.t('config.image_opt_embed')}</span>
</label>
<label>
<input type="radio" id="image_ref" name="image_opt" value="ref" />
<span id="image_opt_ref">Use file reference</span>
<span id="image_opt_ref">${svgEditor.i18next.t('config.image_opt_ref')}</span>
</label>
</fieldset>
</fieldset>

View File

@ -1,4 +1,6 @@
/* globals svgEditor */
const template = document.createElement('template');
// eslint-disable-next-line no-unsanitized/property
template.innerHTML = `
<style>
:not(:defined) {
@ -61,17 +63,17 @@ template.innerHTML = `
<div id="svg_source_container">
<div id="tool_source_back" class="toolbar_button">
<button id="tool_source_save">
Apply Changes
${svgEditor.i18next.t('tools.source_save')}
</button>
<button id="tool_source_cancel">
Cancel
${svgEditor.i18next.t('common.cancel')}
</button>
</div>
<div id="save_output_btns">
<p id="copy_save_note">
Copy the contents of this box into a text editor,
then save the file with a .svg extension.</p>
<button id="copy_save_done">Done</button>
${svgEditor.i18next.t('notification.source_dialog_note')}
</p>
<button id="copy_save_done">${svgEditor.i18next.t('config.done')}</button>
</div>
<form>
<textarea id="svg_source_textarea" spellcheck="false" rows="5" cols="80"></textarea>

View File

@ -5,7 +5,6 @@ For default config and extensions (and available options) available to
*/
import './jquery.min.js';
import './components/index.js';
import Editor from './Editor.js';
const svgEditor = new Editor();

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Změnit ID elementu',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Hlavní menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Nevhodná hodnota',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -157,7 +161,12 @@ export default {
move_front: 'Bring to Front',
move_up: 'Bring Forward',
move_down: 'Send Backward',
move_back: 'Send to Back'
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
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.',
},
layers: {
layer: 'Layer',
@ -200,7 +209,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +239,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Element identifizieren',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Hauptmenü',
@ -160,7 +164,9 @@ export default {
move_back: 'Nach ganz unten verschieben',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Gitternetz',
snapping_onoff: 'Einrasten an/aus',
snapping_stepsize: 'Einrastabstand:',
grid_color: 'Gitterfarbe'
grid_color: 'Gitterfarbe',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Fehlerhafter Wert',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -205,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color:'
grid_color: 'Grid color:',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -235,6 +237,7 @@ export default {
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.'
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Menú principal',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: "Done",
},
notification: {
invalidAttrValGiven: 'Valor no válido',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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: '‫لایه‬',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: '‫مقدار داده شده نامعتبر است‬',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: "Identifier l'élément",
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Menu principal',
@ -160,7 +164,9 @@ export default {
move_back: 'Placer au fond',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grille',
snapping_onoff: 'Ancrer oui/non',
snapping_stepsize: "Pas d'ancrage :",
grid_color: 'Couleur de la grille'
grid_color: 'Couleur de la grille',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Valeur fournie invalide',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Ferkearde waarde jûn',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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: 'परत',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'अमान्य मूल्य',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: "Identifica l'elemento",
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Menù principale',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Valore assegnato non valido',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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: 'レイヤ',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: '無効な値が指定されています。',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identificeer het element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Hoofdmenu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Verkeerde waarde gegeven',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -27,7 +27,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identyfikator elementu',
@ -84,7 +85,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Menu główne',
@ -161,7 +165,9 @@ export default {
move_back: 'Przenieś do tyłu',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -201,7 +207,8 @@ export default {
grid: 'Siatka',
snapping_onoff: 'Włącz/wyłącz przyciąganie',
snapping_stepsize: 'Przyciągaj co:',
grid_color: 'Kolor siatki'
grid_color: 'Kolor siatki',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Podano nieprawidłową wartość',
@ -230,6 +237,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identifica o elemento',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Menu Principal',
@ -160,7 +164,9 @@ export default {
move_back: 'Enviar para Trás',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -199,7 +205,9 @@ export default {
base_unit: 'Unidade base:',
grid: 'Grade',
snapping_onoff: 'Snap on/off',
snapping_stepsize: 'Intensidade do Snap:'
snapping_stepsize: 'Intensidade do Snap:',
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Valor inválido',
@ -228,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identificare element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Menu Principal',
@ -160,7 +164,9 @@ export default {
move_back: 'Trimite in spate',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -199,7 +205,9 @@ export default {
base_unit: 'Unitate de baza:',
grid: 'Caroiaj',
snapping_onoff: 'Fixare on/off',
snapping_stepsize: 'Dimensiunea pasului de fixare:'
snapping_stepsize: 'Dimensiunea pasului de fixare:',
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Valoarea data nu este validă',
@ -228,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -27,15 +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',
class: 'Element class',
serif: 'Serif',
sans_serif: 'Sans-serif',
cursive: 'Cursive',
fantasy: 'Fantasy',
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Идентификатор элемента',
@ -83,7 +75,19 @@ export default {
italic: 'Курсив',
text_anchor_start: 'Align the text in start',
text_anchor_middle: 'Align the text in middle',
text_anchor_end: 'Align the text in end'
text_anchor_end: 'Align the text in end',
class: 'Element class',
serif: 'Serif',
sans_serif: 'Sans-serif',
cursive: 'Cursive',
fantasy: 'Fantasy',
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Главное меню',
@ -160,7 +164,9 @@ export default {
move_back: 'На задний план',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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: 'Слой',
@ -200,7 +206,8 @@ export default {
grid: 'Сетка',
snapping_onoff: 'Привязка вкл/выкл',
snapping_stepsize: 'Шаг привязки:',
grid_color: 'Цвет сетки'
grid_color: 'Цвет сетки',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Некорректное значение аргумента',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Размытые элементы отображены как неразмытые',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Текст может показываться не так как должен'
exportNoText: 'Текст может показываться не так как должен',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Zmeniť ID elementu',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Hlavné menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Zasuň dozadu',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Mriežka',
snapping_onoff: 'Priväzovanie (do mriežky) zap/vyp',
snapping_stepsize: 'Priväzovanie (do mriežky) veľkosť kroku:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Neplatná hodnota',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'ID elementa',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Glavni meni',
@ -160,7 +164,9 @@ export default {
move_back: 'Postavi v ozadje',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -199,7 +205,9 @@ export default {
base_unit: 'Osnovne enote',
grid: 'Mreža',
snapping_onoff: 'Pripni na mrežo DA/NE',
snapping_stepsize: 'Snapping Step-Size:'
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Napačna vrednost!',
@ -228,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: '元素ID',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: '主菜单',
@ -160,7 +164,9 @@ export default {
move_back: '移至底部',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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: '图层',
@ -200,7 +206,8 @@ export default {
grid: '网格',
snapping_onoff: '吸附开/关',
snapping_stepsize: '吸附步长:',
grid_color: '网格颜色'
grid_color: '网格颜色',
done: 'Done',
},
notification: {
invalidAttrValGiven: '无效的参数',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
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'
group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
},
properties: {
id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
times: 'times',
prefs_and_content: 'Store preferences and SVG content locally',
prefs_only: 'Only store preferences locally',
no_prefs_or_content: 'Do not store my preferences or SVG content locally'
},
tools: {
main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool'
square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_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: '圖層',
@ -200,7 +206,8 @@ export default {
grid: 'Grid',
snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color'
grid_color: 'Grid color',
done: 'Done',
},
notification: {
invalidAttrValGiven: '數值給定錯誤',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled',
exportNoText: 'Text may not appear as expected'
exportNoText: 'Text may not appear as expected',
editorPreferencesMsg: 'By default and where supported, SVG-Edit can store your editor preferences and SVG content locally on your machine so you do not need to add these back each time you load SVG-Edit. If, for privacy reasons, you do not wish to store this information on your machine, you can change away from the default option below.',
source_dialog_note: 'Copy the contents of this box into a text editor, then save the file with a .svg extension.'
}
};