mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
docs: add multiple selection docs (#1875)
This commit is contained in:
parent
93137c0bb2
commit
84abda82d5
2 changed files with 7 additions and 0 deletions
|
@ -259,6 +259,12 @@ export const ShortcutsDialog = ({ onClose }: { onClose?: () => void }) => {
|
|||
label={t("labels.selectAll")}
|
||||
shortcuts={[getShortcutKey("CtrlOrCmd+A")]}
|
||||
/>
|
||||
<Shortcut
|
||||
label={t("labels.multiSelect")}
|
||||
shortcuts={[
|
||||
getShortcutKey(`Shift+${t("shortcutsDialog.click")}`),
|
||||
]}
|
||||
/>
|
||||
<Shortcut
|
||||
label={t("labels.moveCanvas")}
|
||||
shortcuts={[
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"labels": {
|
||||
"paste": "Paste",
|
||||
"selectAll": "Select all",
|
||||
"multiSelect": "Add element to selection",
|
||||
"moveCanvas": "Move canvas",
|
||||
"copy": "Copy",
|
||||
"copyAsPng": "Copy to clipboard as PNG",
|
||||
|
|
Loading…
Add table
Reference in a new issue