diff --git a/CHANGES.md b/CHANGES.md index 805166a1..6b435f3e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,7 +8,9 @@ PDF as export (#273 @cuixiping); fixes #124 and #254 - Fix (image import): Put src after onload to avoid missing event; check other width/height properties in case offset is 0; fixes #278 -- Fix (image export) Export in Chrome; fixes #282 +- Fix (image export): Export in Chrome; fixes #282 +- Fix (Context menus): Avoid showing double shortcuts (#285); add some + missing ones - npm: Update devDeps - npm: Point to official sinon-test package now that ES6 Modules support landed diff --git a/dist/locale/lang.en.js b/dist/locale/lang.en.js index b087a09c..5b35b7f2 100644 --- a/dist/locale/lang.en.js +++ b/dist/locale/lang.en.js @@ -127,10 +127,10 @@ var svgEditorLang_en = (function () { set_link_url: 'Set link URL (leave empty to remove)', to_path: 'Convert to Path', reorient_path: 'Reorient path', - ungroup: 'Ungroup Elements [G]', + ungroup: 'Ungroup Elements', docprops: 'Document Properties [D]', - move_bottom: 'Send to Back [ Ctrl+Shift+[ ]', - move_top: 'Bring to Front [ Ctrl+Shift+] ]', + move_bottom: 'Send to Back', + move_top: 'Bring to Front', node_clone: 'Clone Node', node_delete: 'Delete Node', node_link: 'Link Control Points', @@ -143,10 +143,10 @@ var svgEditorLang_en = (function () { paste_in_place: 'Paste in Place', delete: 'Delete', group: 'Group', - move_front: 'Bring to Front [ Ctrl-Shift+] ]', - move_up: 'Bring Forward [ Ctrl+] ]', - move_down: 'Send Backward [ Ctrl+[ ]', - move_back: 'Send to Back [ Ctrl+Shift+[ ]' + move_front: 'Bring to Front', + move_up: 'Bring Forward', + move_down: 'Send Backward', + move_back: 'Send to Back' }, layers: { layer: 'Layer', diff --git a/editor/locale/lang.en.js b/editor/locale/lang.en.js index 6f6b991c..204c8488 100644 --- a/editor/locale/lang.en.js +++ b/editor/locale/lang.en.js @@ -124,10 +124,10 @@ export default { set_link_url: 'Set link URL (leave empty to remove)', to_path: 'Convert to Path', reorient_path: 'Reorient path', - ungroup: 'Ungroup Elements [G]', + ungroup: 'Ungroup Elements', docprops: 'Document Properties [D]', - move_bottom: 'Send to Back [ Ctrl+Shift+[ ]', - move_top: 'Bring to Front [ Ctrl+Shift+] ]', + move_bottom: 'Send to Back', + move_top: 'Bring to Front', node_clone: 'Clone Node', node_delete: 'Delete Node', node_link: 'Link Control Points', @@ -140,10 +140,10 @@ export default { paste_in_place: 'Paste in Place', delete: 'Delete', group: 'Group', - move_front: 'Bring to Front [ Ctrl-Shift+] ]', - move_up: 'Bring Forward [ Ctrl+] ]', - move_down: 'Send Backward [ Ctrl+[ ]', - move_back: 'Send to Back [ Ctrl+Shift+[ ]' + move_front: 'Bring to Front', + move_up: 'Bring Forward', + move_down: 'Send Backward', + move_back: 'Send to Back' }, layers: { layer: 'Layer', diff --git a/editor/svg-editor-es.html b/editor/svg-editor-es.html index 55468955..636f6e1b 100644 --- a/editor/svg-editor-es.html +++ b/editor/svg-editor-es.html @@ -748,17 +748,17 @@