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.layersPanel = new LayersPanel(this);
this.mainMenu = new MainMenu(this); this.mainMenu = new MainMenu(this);
window.svgEditor = 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 self = this;
const { i18next } = await putLocale(this.configObj.pref('lang'), this.goodLangs); const { i18next } = await putLocale(this.configObj.pref('lang'), this.goodLangs);
this.i18next = i18next; 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 // allow to prepare the dom without display
this.$svgEditor.style.visibility = 'hidden'; this.$svgEditor.style.visibility = 'hidden';
try { try {

View File

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

View File

@ -1,4 +1,5 @@
/* eslint-disable max-len */ /* eslint-disable max-len */
/* globals svgEditor */
const palette = [ const palette = [
// Todo: Make into configuration item? // Todo: Make into configuration item?
'none', '#000000', '#3f3f3f', '#7f7f7f', '#bfbfbf', '#ffffff', 'none', '#000000', '#3f3f3f', '#7f7f7f', '#bfbfbf', '#ffffff',
@ -14,6 +15,7 @@ const palette = [
]; ];
const template = document.createElement('template'); const template = document.createElement('template');
// eslint-disable-next-line no-unsanitized/property
template.innerHTML = ` template.innerHTML = `
<style> <style>
.square { .square {
@ -76,7 +78,7 @@ template.innerHTML = `
} }
} }
</style> </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 id="js-se-palette">
</div> </div>
</div> </div>

View File

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

View File

@ -1,6 +1,8 @@
/* globals svgEditor */
import { isValidUnit } from '../../common/units.js'; import { isValidUnit } from '../../common/units.js';
const template = document.createElement('template'); const template = document.createElement('template');
// eslint-disable-next-line no-unsanitized/property
template.innerHTML = ` template.innerHTML = `
<style> <style>
:not(:defined) { :not(:defined) {
@ -69,46 +71,46 @@ template.innerHTML = `
<elix-dialog id="svg_docprops" aria-label="Sample dialog" closed> <elix-dialog id="svg_docprops" aria-label="Sample dialog" closed>
<div id="svg_docprops_container"> <div id="svg_docprops_container">
<div id="tool_docprops_back" class="toolbar_button"> <div id="tool_docprops_back" class="toolbar_button">
<button id="tool_docprops_save">OK</button> <button id="tool_docprops_save">${svgEditor.i18next.t('common.ok')}</button>
<button id="tool_docprops_cancel">Cancel</button> <button id="tool_docprops_cancel">${svgEditor.i18next.t('common.cancel')}</button>
</div> </div>
<fieldset id="svg_docprops_docprops"> <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> <label>
<span id="svginfo_title">Title:</span> <span id="svginfo_title">${svgEditor.i18next.t('config.doc_title')}</span>
<input type="text" id="canvas_title" /> <input type="text" id="canvas_title" />
</label> </label>
<fieldset id="change_resolution"> <fieldset id="change_resolution">
<legend id="svginfo_dim">Canvas Dimensions</legend> <legend id="svginfo_dim">${svgEditor.i18next.t('config.doc_dims')}</legend>
<label> <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" /> <input type="text" id="canvas_width" size="6" />
</label> </label>
<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" /> <input type="text" id="canvas_height" size="6" />
</label> </label>
<label> <label>
<select id="resolution"> <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>640x480</option>
<option>800x600</option> <option>800x600</option>
<option>1024x768</option> <option>1024x768</option>
<option>1280x960</option> <option>1280x960</option>
<option>1600x1200</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> </select>
</label> </label>
</fieldset> </fieldset>
<fieldset id="image_save_opts"> <fieldset id="image_save_opts">
<legend id="includedImages">Included Images</legend> <legend id="includedImages">${svgEditor.i18next.t('config.included_images')}</legend>
<label> <label>
<input type="radio" id="image_embed" name="image_opt" value="embed" checked="checked" /> <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>
<label> <label>
<input type="radio" id="image_ref" name="image_opt" value="ref" /> <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> </label>
</fieldset> </fieldset>
</fieldset> </fieldset>

View File

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

View File

@ -26,7 +26,8 @@ export default {
pathCtrlPtTooltip: 'Drag control point to adjust curve properties', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Změnit ID elementu', id: 'Změnit ID elementu',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Hlavní menu', main_menu: 'Hlavní menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Vrstva', layer: 'Vrstva',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Nevhodná hodnota', invalidAttrValGiven: 'Nevhodná hodnota',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -157,7 +161,12 @@ export default {
move_front: 'Bring to Front', move_front: 'Bring to Front',
move_up: 'Bring Forward', move_up: 'Bring Forward',
move_down: 'Send Backward', move_down: 'Send Backward',
move_back: 'Send to Back' move_back: 'Send to Back',
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: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +209,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +239,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Element identifizieren', id: 'Element identifizieren',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Hauptmenü', main_menu: 'Hauptmenü',
@ -160,7 +164,9 @@ export default {
move_back: 'Nach ganz unten verschieben', move_back: 'Nach ganz unten verschieben',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Ebene', layer: 'Ebene',
@ -200,7 +206,8 @@ export default {
grid: 'Gitternetz', grid: 'Gitternetz',
snapping_onoff: 'Einrasten an/aus', snapping_onoff: 'Einrasten an/aus',
snapping_stepsize: 'Einrastabstand:', snapping_stepsize: 'Einrastabstand:',
grid_color: 'Gitterfarbe' grid_color: 'Gitterfarbe',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Fehlerhafter Wert', invalidAttrValGiven: 'Fehlerhafter Wert',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -205,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color:' grid_color: 'Grid color:',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -235,6 +237,7 @@ export default {
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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.' 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Menú principal', main_menu: 'Menú principal',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Capa', layer: 'Capa',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: "Done",
}, },
notification: { notification: {
invalidAttrValGiven: 'Valor no válido', invalidAttrValGiven: 'Valor no válido',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: '‫لایه‬', layer: '‫لایه‬',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: '‫مقدار داده شده نامعتبر است‬', invalidAttrValGiven: '‫مقدار داده شده نامعتبر است‬',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: "Identifier l'élément", id: "Identifier l'élément",
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Menu principal', main_menu: 'Menu principal',
@ -160,7 +164,9 @@ export default {
move_back: 'Placer au fond', move_back: 'Placer au fond',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Calque', layer: 'Calque',
@ -200,7 +206,8 @@ export default {
grid: 'Grille', grid: 'Grille',
snapping_onoff: 'Ancrer oui/non', snapping_onoff: 'Ancrer oui/non',
snapping_stepsize: "Pas d'ancrage :", snapping_stepsize: "Pas d'ancrage :",
grid_color: 'Couleur de la grille' grid_color: 'Couleur de la grille',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Valeur fournie invalide', invalidAttrValGiven: 'Valeur fournie invalide',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Laach', layer: 'Laach',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Ferkearde waarde jûn', invalidAttrValGiven: 'Ferkearde waarde jûn',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'परत', layer: 'परत',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'अमान्य मूल्य', invalidAttrValGiven: 'अमान्य मूल्य',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: "Identifica l'elemento", id: "Identifica l'elemento",
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Menù principale', main_menu: 'Menù principale',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Livello', layer: 'Livello',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Valore assegnato non valido', invalidAttrValGiven: 'Valore assegnato non valido',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'レイヤ', layer: 'レイヤ',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: '無効な値が指定されています。', invalidAttrValGiven: '無効な値が指定されています。',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identificeer het element', id: 'Identificeer het element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Hoofdmenu', main_menu: 'Hoofdmenu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Laag', layer: 'Laag',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Verkeerde waarde gegeven', invalidAttrValGiven: 'Verkeerde waarde gegeven',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identyfikator elementu', id: 'Identyfikator elementu',
@ -84,7 +85,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Menu główne', main_menu: 'Menu główne',
@ -161,7 +165,9 @@ export default {
move_back: 'Przenieś do tyłu', move_back: 'Przenieś do tyłu',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Warstwa', layer: 'Warstwa',
@ -201,7 +207,8 @@ export default {
grid: 'Siatka', grid: 'Siatka',
snapping_onoff: 'Włącz/wyłącz przyciąganie', snapping_onoff: 'Włącz/wyłącz przyciąganie',
snapping_stepsize: 'Przyciągaj co:', snapping_stepsize: 'Przyciągaj co:',
grid_color: 'Kolor siatki' grid_color: 'Kolor siatki',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Podano nieprawidłową wartość', invalidAttrValGiven: 'Podano nieprawidłową wartość',
@ -230,6 +237,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identifica o elemento', id: 'Identifica o elemento',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Menu Principal', main_menu: 'Menu Principal',
@ -160,7 +164,9 @@ export default {
move_back: 'Enviar para Trás', move_back: 'Enviar para Trás',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Camada', layer: 'Camada',
@ -199,7 +205,9 @@ export default {
base_unit: 'Unidade base:', base_unit: 'Unidade base:',
grid: 'Grade', grid: 'Grade',
snapping_onoff: 'Snap on/off', snapping_onoff: 'Snap on/off',
snapping_stepsize: 'Intensidade do Snap:' snapping_stepsize: 'Intensidade do Snap:',
grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Valor inválido', invalidAttrValGiven: 'Valor inválido',
@ -228,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identificare element', id: 'Identificare element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Menu Principal', main_menu: 'Menu Principal',
@ -160,7 +164,9 @@ export default {
move_back: 'Trimite in spate', move_back: 'Trimite in spate',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Strat', layer: 'Strat',
@ -199,7 +205,9 @@ export default {
base_unit: 'Unitate de baza:', base_unit: 'Unitate de baza:',
grid: 'Caroiaj', grid: 'Caroiaj',
snapping_onoff: 'Fixare on/off', snapping_onoff: 'Fixare on/off',
snapping_stepsize: 'Dimensiunea pasului de fixare:' snapping_stepsize: 'Dimensiunea pasului de fixare:',
grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Valoarea data nu este validă', invalidAttrValGiven: 'Valoarea data nu este validă',
@ -228,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label', group_identify_label: 'Group identification label',
class: 'Element class', export_type_label: 'Select an image type for export:',
serif: 'Serif',
sans_serif: 'Sans-serif',
cursive: 'Cursive',
fantasy: 'Fantasy',
monospace: 'Monospace',
courier: 'Courier',
helvetica: 'Helvetica',
times: 'times'
}, },
properties: { properties: {
id: 'Идентификатор элемента', id: 'Идентификатор элемента',
@ -83,7 +75,19 @@ export default {
italic: 'Курсив', italic: 'Курсив',
text_anchor_start: 'Align the text in start', text_anchor_start: 'Align the text in start',
text_anchor_middle: 'Align the text in middle', 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: { tools: {
main_menu: 'Главное меню', main_menu: 'Главное меню',
@ -160,7 +164,9 @@ export default {
move_back: 'На задний план', move_back: 'На задний план',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Слой', layer: 'Слой',
@ -200,7 +206,8 @@ export default {
grid: 'Сетка', grid: 'Сетка',
snapping_onoff: 'Привязка вкл/выкл', snapping_onoff: 'Привязка вкл/выкл',
snapping_stepsize: 'Шаг привязки:', snapping_stepsize: 'Шаг привязки:',
grid_color: 'Цвет сетки' grid_color: 'Цвет сетки',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Некорректное значение аргумента', invalidAttrValGiven: 'Некорректное значение аргумента',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Размытые элементы отображены как неразмытые', exportNoBlur: 'Размытые элементы отображены как неразмытые',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Zmeniť ID elementu', id: 'Zmeniť ID elementu',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Hlavné menu', main_menu: 'Hlavné menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Zasuň dozadu', move_back: 'Zasuň dozadu',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Vrstva', layer: 'Vrstva',
@ -200,7 +206,8 @@ export default {
grid: 'Mriežka', grid: 'Mriežka',
snapping_onoff: 'Priväzovanie (do mriežky) zap/vyp', snapping_onoff: 'Priväzovanie (do mriežky) zap/vyp',
snapping_stepsize: 'Priväzovanie (do mriežky) veľkosť kroku:', snapping_stepsize: 'Priväzovanie (do mriežky) veľkosť kroku:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Neplatná hodnota', invalidAttrValGiven: 'Neplatná hodnota',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'ID elementa', id: 'ID elementa',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Glavni meni', main_menu: 'Glavni meni',
@ -160,7 +164,9 @@ export default {
move_back: 'Postavi v ozadje', move_back: 'Postavi v ozadje',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Sloj', layer: 'Sloj',
@ -199,7 +205,9 @@ export default {
base_unit: 'Osnovne enote', base_unit: 'Osnovne enote',
grid: 'Mreža', grid: 'Mreža',
snapping_onoff: 'Pripni na mrežo DA/NE', snapping_onoff: 'Pripni na mrežo DA/NE',
snapping_stepsize: 'Snapping Step-Size:' snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Napačna vrednost!', invalidAttrValGiven: 'Napačna vrednost!',
@ -228,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: '元素ID', id: '元素ID',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: '主菜单', main_menu: '主菜单',
@ -160,7 +164,9 @@ export default {
move_back: '移至底部', move_back: '移至底部',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: '图层', layer: '图层',
@ -200,7 +206,8 @@ export default {
grid: '网格', grid: '网格',
snapping_onoff: '吸附开/关', snapping_onoff: '吸附开/关',
snapping_stepsize: '吸附步长:', snapping_stepsize: '吸附步长:',
grid_color: '网格颜色' grid_color: '网格颜色',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: '无效的参数', invalidAttrValGiven: '无效的参数',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: 'Layer', layer: 'Layer',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: 'Invalid value given', invalidAttrValGiven: 'Invalid value given',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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', pathCtrlPtTooltip: 'Drag control point to adjust curve properties',
pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity', pick_stroke_paint_opacity: 'Pick a Stroke Paint and Opacity',
pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity', pick_fill_paint_opacity: 'Pick a Fill Paint and Opacity',
group_identify_label: 'Group identification label' group_identify_label: 'Group identification label',
export_type_label: 'Select an image type for export:',
}, },
properties: { properties: {
id: 'Identify the element', id: 'Identify the element',
@ -83,7 +84,10 @@ export default {
monospace: 'Monospace', monospace: 'Monospace',
courier: 'Courier', courier: 'Courier',
helvetica: 'Helvetica', 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: { tools: {
main_menu: 'Main Menu', main_menu: 'Main Menu',
@ -160,7 +164,9 @@ export default {
move_back: 'Send to Back', move_back: 'Send to Back',
tool_unlink_use: 'Break link to reference element (make unique)', tool_unlink_use: 'Break link to reference element (make unique)',
ellipse_circle_tool: 'Ellipse/Circle Tool', ellipse_circle_tool: 'Ellipse/Circle Tool',
square_rect_tool: 'Square/Rect Tool' square_rect_tool: 'Square/Rect Tool',
remember_this_choice: 'Remember this choice?',
remember_this_choice_title: 'If you choose to opt out of storage while remembering this choice, the URL will change so as to avoid asking again.',
}, },
layers: { layers: {
layer: '圖層', layer: '圖層',
@ -200,7 +206,8 @@ export default {
grid: 'Grid', grid: 'Grid',
snapping_onoff: 'Snapping on/off', snapping_onoff: 'Snapping on/off',
snapping_stepsize: 'Snapping Step-Size:', snapping_stepsize: 'Snapping Step-Size:',
grid_color: 'Grid color' grid_color: 'Grid color',
done: 'Done',
}, },
notification: { notification: {
invalidAttrValGiven: '數值給定錯誤', invalidAttrValGiven: '數值給定錯誤',
@ -229,6 +236,8 @@ export default {
exportNoBlur: 'Blurred elements will appear as un-blurred', exportNoBlur: 'Blurred elements will appear as un-blurred',
exportNoforeignObject: 'foreignObject elements will not appear', exportNoforeignObject: 'foreignObject elements will not appear',
exportNoDashArray: 'Strokes will appear filled', 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.'
} }
}; };