diff --git a/public/app/core/components/help/HelpModal.tsx b/public/app/core/components/help/HelpModal.tsx index c413663c9bd..07ab02a9569 100644 --- a/public/app/core/components/help/HelpModal.tsx +++ b/public/app/core/components/help/HelpModal.tsx @@ -128,10 +128,26 @@ const getShortcuts = (modKey: string, t: TFunction) => { keys: ['v'], description: t('help-modal.shortcuts-description.toggle-panel-fullscreen', 'Toggle panel fullscreen view'), }, + { + keys: ['p', 'u'], + description: t('help-modal.shortcuts-description.open-share-link-drawer', 'Share panel link'), + }, + { + keys: ['p', 'e'], + description: t('help-modal.shortcuts-description.open-share-embed-drawer', 'Share panel embed'), + }, { keys: ['p', 's'], description: t('help-modal.shortcuts-description.open-shared-modal', 'Share panel snapshot'), }, + { + keys: ['p', 'x'], + description: t('help-modal.shortcuts-description.explore-panel', 'Explore panel'), + }, + { + keys: ['i'], + description: t('help-modal.shortcuts-description.inspect-panel', 'Inspect panel'), + }, { keys: ['p', 'd'], description: t('help-modal.shortcuts-description.duplicate-panel', 'Duplicate Panel') }, { keys: ['p', 'r'], description: t('help-modal.shortcuts-description.remove-panel', 'Remove Panel') }, { diff --git a/public/locales/en-US/grafana.json b/public/locales/en-US/grafana.json index a77244883cd..3f6f1d75684 100644 --- a/public/locales/en-US/grafana.json +++ b/public/locales/en-US/grafana.json @@ -5769,14 +5769,18 @@ "duplicate-panel": "Duplicate Panel", "exit-edit/setting-views": "Exit edit/setting views", "expand-all-rows": "Expand all rows", + "explore-panel": "Explore panel", "go-to-dashboards": "Go to Dashboards", "go-to-explore": "Go to Explore", "go-to-home-dashboard": "Go to Home Dashboard", "go-to-profile": "Go to Profile", + "inspect-panel": "Inspect panel", "make-time-range-permanent": "Make time range absolute/permanent", "move-time-range-back": "Move time range back", "move-time-range-forward": "Move time range forward", "open-search": "Open search", + "open-share-embed-drawer": "Share panel embed", + "open-share-link-drawer": "Share panel link", "open-shared-modal": "Share panel snapshot", "paste-time-range": "Paste time range", "refresh-all-panels": "Refresh all panels",