From 85e02dea8705b585039cb668e62ecac0200df64d Mon Sep 17 00:00:00 2001 From: Quincy Morgan <2046746+quincylvania@users.noreply.github.com> Date: Mon, 13 Jul 2020 14:14:45 -0400 Subject: [PATCH] Add info about touchscreen multiselection to the help pane --- data/core.yaml | 3 ++- dist/locales/en.json | 3 ++- modules/ui/panes/help.js | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/data/core.yaml b/data/core.yaml index 36e96b37b..e0cb00c69 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -1317,7 +1317,8 @@ en: select_right_click: "{rightclick} Right-click or {longpress_icon} long-press a feature to display the edit menu, which provides commands such as copy, rotate, and delete." select_space: "The `{space}` key can also be used in place of left-click when selecting and drawing." multiselect_h: "Multiselect" - multiselect_shift_click: "`{shift}`+{leftclick} left-click to select several features together. This makes it easier to move or delete multiple items." + multiselect: "Selecting multiple features together lets you quickly edit them all at once." + multiselect_shift_click: "With a mouse and keyboard, hold `{shift}` and {leftclick} left-click features to add them to the selection. On a touchscreen, {longpress_icon} tap-and-hold one feature while {tap_icon} tapping additional features with another finger." multiselect_lasso: "Another way to select multiple features is to hold down the `{shift}` key, then press and hold down the {leftclick} left mouse button and drag the mouse to draw a selection lasso. All of the points inside the lasso area will be selected." undo_redo_h: "Undo & Redo" undo_redo: "Your edits are stored locally in your browser until you choose to save them to the OpenStreetMap server. You can undo edits by pressing the {undo_icon} **{undo}** button, and redo them by pressing the {redo_icon} **{redo}** button." diff --git a/dist/locales/en.json b/dist/locales/en.json index ea858ac4b..9e1fda685 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -1653,7 +1653,8 @@ "select_right_click": "{rightclick} Right-click or {longpress_icon} long-press a feature to display the edit menu, which provides commands such as copy, rotate, and delete.", "select_space": "The `{space}` key can also be used in place of left-click when selecting and drawing.", "multiselect_h": "Multiselect", - "multiselect_shift_click": "`{shift}`+{leftclick} left-click to select several features together. This makes it easier to move or delete multiple items.", + "multiselect": "Selecting multiple features together lets you quickly edit them all at once.", + "multiselect_shift_click": "With a mouse and keyboard, hold `{shift}` and {leftclick} left-click features to add them to the selection. On a touchscreen, {longpress_icon} tap-and-hold one feature while {tap_icon} tapping additional features with another finger.", "multiselect_lasso": "Another way to select multiple features is to hold down the `{shift}` key, then press and hold down the {leftclick} left mouse button and drag the mouse to draw a selection lasso. All of the points inside the lasso area will be selected.", "undo_redo_h": "Undo & Redo", "undo_redo": "Your edits are stored locally in your browser until you choose to save them to the OpenStreetMap server. You can undo edits by pressing the {undo_icon} **{undo}** button, and redo them by pressing the {redo_icon} **{redo}** button.", diff --git a/modules/ui/panes/help.js b/modules/ui/panes/help.js index e4c4be13d..a77ef0c81 100644 --- a/modules/ui/panes/help.js +++ b/modules/ui/panes/help.js @@ -36,6 +36,7 @@ export function uiPaneHelp(context) { 'select_right_click', 'select_space', 'multiselect_h', + 'multiselect', 'multiselect_shift_click', 'multiselect_lasso', 'undo_redo_h',